Answers for "all date in year javascript"

2

javascript get years since a date

function getAge(dateString) {
   var ageInMilliseconds = new Date() - new Date(dateString);
   return Math.floor(ageInMilliseconds/1000/60/60/24/365); // convert to years
}
console.log(getAge('1997-04-23'));
Posted by: Guest on May-31-2021
16

how to get the year in javascript

new Date().getFullYear(); // This will get you the current year
Posted by: Guest on April-21-2020

Code answers related to "Javascript"

Browse Popular Code Answers by Language