Skip to content

Instantly share code, notes, and snippets.

@Falciighol
Created January 13, 2020 22:17
Show Gist options
  • Save Falciighol/1447a5207d37e7e7ca371bf0d6f16902 to your computer and use it in GitHub Desktop.
Save Falciighol/1447a5207d37e7e7ca371bf0d6f16902 to your computer and use it in GitHub Desktop.
[Age Calculator] Javascipt age calculator script #js
var run = () => {
var birth = new Date("1999-3-22");
var curr = new Date();
var diff = curr.getTime() - birth.getTime();
console.log("Edad: " + Math.floor(diff / (1000 * 60 * 60 * 24 * 365.25)));
}
run();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment