Created
March 9, 2018 13:14
-
-
Save yhay81/13e49c924c3346b749a63300c89c8598 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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