Last active
April 9, 2020 03:07
-
-
Save lenoraporter/d58e821fce5b42eaf2c05489910a6f81 to your computer and use it in GitHub Desktop.
JavaScript let
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 sayLevelUp = "Level Up! "; | |
let times = 5; | |
if (times >= 1) { | |
let lyrics = sayLevelUp.repeat(times); | |
console.log(lyrics); // Level Up! Level Up! Level Up! Level Up! Level Up! | |
} | |
console.log(lyrics); // Uncaught ReferenceError: lyrics is not defined |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment