Skip to content

Instantly share code, notes, and snippets.

@colevandersWands
Created April 16, 2021 07:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save colevandersWands/83ef3e7488220c98da48d5633bc9b9e8 to your computer and use it in GitHub Desktop.
Save colevandersWands/83ef3e7488220c98da48d5633bc9b9e8 to your computer and use it in GitHub Desktop.
a review file or folder in each module
  1. What would be the answer: true or false? console.log("3" === 3);

    answer

    true, because ...

    link to something helpful

  2. What would be the answer: true or false? console.log("7" == 7);

    answer

    true, because ...

    link to something helpful

  3. What would be the answer: true or false? console.log(true = 1);

    answer

    true, because ...

    link to something helpful

  4. Which statement is true and why?

    1. Strict equality operator '===' compares type and value of operands.
    2. Strict equality operator '==' tries to convert operands to the same type.
    3. This statement is truthytrue == 'false'
    answer

    all are true! explanation

    link to something helpful

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment