w3resource

JavaScript: Get a short textual representation of a month

JavaScript Datetime: Exercise-27 with Solution

Write a JavaScript function to get a short textual representation of a month, three letters (Jan through Dec).

Test Data :
dt = new Date(2015, 10, 1);
console.log(short_months(dt));
"Nov"

Sample Solution:-

HTML Code:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>avaScript function to get a short textual representation of a month, three letters (Jan through Dec)</title>
</head>
<body>

</body>
</html>

JavaScript Code:

 Date.shortMonths = ['Jan', 'Feb', 'Mar', 'Apr', 'May', 'Jun', 'Jul', 'Aug', 'Sep', 'Oct', 'Nov', 'Dec'];

function short_months(dt)
   { 
     return Date.shortMonths[dt.getMonth()]; 
   }

dt = new Date(); 
console.log(short_months(dt)); 

dt = new Date(2015, 10, 1); 
console.log(short_months(dt));

Sample Output:

Jun
Nov

Flowchart:

Flowchart: JavaScript- Get a short textual representation of a month

Live Demo:

See the Pen JavaScript - Get a short textual representation of a month-date-ex-27 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus

Previous: Write a JavaScript function to get a numeric representation of a month, with leading zeros (01 through 12).
Next: Write a JavaScript function to get a full numeric representation of a year (4 digits).

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.