Skip to content

Instantly share code, notes, and snippets.

@gladchinda
Created July 30, 2018 23:15
Show Gist options
  • Select an option

  • Save gladchinda/983314fcb12f681a08d1f740caca332b to your computer and use it in GitHub Desktop.

Select an option

Save gladchinda/983314fcb12f681a08d1f740caca332b to your computer and use it in GitHub Desktop.
// USING REGULAR FUNCTION
const getTimestamp = function() {
return +new Date;
}
// USING ARROW FUNCTION
const getTimestamp = () => {
return +new Date;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment