Popcorn Hack 1: Variable Naming, and Strings in JavaScript

Instructions:

  1. Open a new cell and set its type to Code.

  2. Using the correct variable naming case for JavaScript

  3. Create a string variable for "gameQuestion" and let it equal: "My favorite video game is "

  4. create a variable for "gameAnswer" and let it equal: your favorite game

  5. output your gameQuestion and gameAnswer to the console [EX: console.log(gameQuestion + gameAnswer);]

  6. Open your console and see if it displayed the correct message

%%js
gameQuestion = "My favorite video game is";
gameAnswer = " Tears of the Kingdom";
console.log(gameQuestion + gameAnswer);
<IPython.core.display.Javascript object>

Popcorn Hack 2: Null, Undefined, Symbol, in JavaScript

Instructions:

  1. Open a new cell and set its type to Code.

  2. Create a variable nullVar and set it to null.

  3. Create a variable undefinedVar and leave it uninitialized.

  4. Create a variable symbolVar and set it to a new Symbol with a description of your choice. [EX: let myRPG = Symbol("Pokemon");]

  5. Output all three variables to the console using console.log().

%%js
    let nullvar = null;
    let undefinedVar;
    let myRPG = Symbol("Pokemon");
    console.log(nullvar+undefinedVar +myRPG )
<IPython.core.display.Javascript object>