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
const meg; //Uncaught SyntaxError: Missing initializer in const declaration |
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
const meganOnStage = "Hi, I'm Megan Thee Stallion." | |
const meganOnStage = "Hi, I'm Meg." // Uncaught SyntaxError: Identifier 'meganOnStage' has already been declared |
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 ciara = "I'm engaged to Future."; | |
ciara = "My husband is Russell Wilson." | |
console.log(ciara); // My husband is Russell Wilson. |
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
const theeStallionProfile = { | |
name: "Megan Pette", | |
stageName: "Megan Thee Stallion", | |
situationShip: "MoneyBagYo", | |
pets: { | |
name: "4oe", | |
breed: "French Bulldog" | |
} | |
} |
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
const meganOnStage = "Hi, I'm Megan Thee Stallion." | |
meganOnStage = "Hi, I'm Meg." // Uncaught TypeError: Assignment to constant variable. |
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 ciara = "My husband is Russell Wilson."; | |
let currentYear = 2019; | |
if (currentYear <= 2015 && currentYear >= 2013) { | |
let ciara = "I'm in love with Future." | |
console.log(ciara); | |
} | |
console.log(ciara); |
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 ciara = "My husband is Russell Wilson."; | |
let ciara = "I'm in love with Future." //Uncaught SyntaxError: Identifier 'ciara' has already been declared |
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
var beyonce = "Hi, I'm Beyonce Knowles."; | |
beyonce = "Hi, I'm Beyonce Carter."; |
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
var beyonce = "Hi, I'm Beyonce Knowles."; | |
var beyonce = "Hi, I'm Beyonce Carter."; |
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 |
NewerOlder