Demo showing a narrow weekday

Narrow sets the weekday to one character.

JavaScript

const date = new Date('2016-10-25T11:51:22Z');
const dateFormat = new Intl.DateTimeFormat('en', {
    month: 'short',
  });
console.log(dateFormat.format(date));