How to get current month name in JavaScript

Datetime
By Jad Joubran · 
Last updated Dec 29, 2017
const date = Date.now();

const options = { month: "long" };

new Intl.DateTimeFormat("en-US", options).format(date);
December