Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR JAVASCRIPT

getfullyear javascript

// create a Date var type then use getFullYear. 
this.dob = new Date(dob);
 
this.getBirthYear = function() { 
  return this.dob.getFullYear();
}
 
PREVIOUS NEXT
Tagged: #getfullyear #javascript
ADD COMMENT
Topic
Name
5+9 =