Skip to content

Instantly share code, notes, and snippets.

@Fenntasy
Created January 27, 2022 14:02
Show Gist options
  • Save Fenntasy/9ae117a98a4da0922735aac902894e80 to your computer and use it in GitHub Desktop.
Save Fenntasy/9ae117a98a4da0922735aac902894e80 to your computer and use it in GitHub Desktop.
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