Skip to content

Instantly share code, notes, and snippets.

@yhay81
Created March 9, 2018 13:14
Show Gist options
  • Save yhay81/13e49c924c3346b749a63300c89c8598 to your computer and use it in GitHub Desktop.
Save yhay81/13e49c924c3346b749a63300c89c8598 to your computer and use it in GitHub Desktop.
let count = 0;
const doOnlyOnce = function (){
if(count==0){
console.log("You do this for first time.");
}else{
console.log("You already have done this.");
}
count++;
};
doOnlyOnce(); // "You do this for first time."
doOnlyOnce(); // "You already have done this."
doOnlyOnce(); // "You already have done this."
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment