Skip to content

Instantly share code, notes, and snippets.

@youminkim
Created March 24, 2014 02:38
Show Gist options
  • Save youminkim/9733277 to your computer and use it in GitHub Desktop.
Save youminkim/9733277 to your computer and use it in GitHub Desktop.
google apps script general functions
function now_timestamp(){
return new Date().getTime();
}
function timestampToDate(sec) {
return new Date(sec*1000);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment