Created
January 27, 2022 14:02
-
-
Save Fenntasy/9ae117a98a4da0922735aac902894e80 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 sentence = "A cool sentence"; | |
const favoriteNumber = 41; | |
const listOfThings = ["keys", "lamp", "headphones"]; | |
const walkmanSpecifications = { | |
name: "TPS-L2", | |
yean: "1979", | |
color: "Blue & Silver", | |
battery: "AA x2", | |
} | |
sentence = "A cooler sentence"; | |
favoriteNumber = favoriteNumber + 1; | |
listOfThings = ["glasses", "tissues", "mug"]; | |
walkmanSpecifications["isCool"] = true; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment