w3resource

JavaScript: Get a full numeric representation of a year

JavaScript Datetime: Exercise-28 with Solution

Write a JavaScript function to get a full numeric representation of a year (4 digits).

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

Sample Solution:-

HTML Code:

<!DOCTYPE html>
<html>
<head>
  <meta charset="utf-8">
  <title>JavaScript function to get a full numeric representation of a year (4 digits)</title>
</head>
<body>

</body>
</html>

JavaScript Code:

function full_year(dt) 
{ 
  return dt.getFullYear(); 
}
dt = new Date(); 
console.log(full_year(dt)); 

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

Sample Output:

2018
2015

Flowchart:

Flowchart: JavaScript- Get a full numeric representation of a year

Live Demo:

See the Pen JavaScript - Get a full numeric representation of a year-date-ex-28 by w3resource (@w3resource) on CodePen.


Improve this sample solution and post your code through Disqus

Previous: Write a JavaScript function to get a short textual representation of a month, three letters (Jan through Dec).
Next: Write a JavaScript function to get a two digit representation of a year.

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.