How to get current short day name in JavaScript

Datetime
By Jad Joubran · 
Last updated Jan 04, 2018
const date = Date.now();

const options = { weekday: "short" };

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