Jun 24, 2024
// for single-line comments/* ... */ for multi-line commentsundefined, null, boolean, string, symbol, number, objectvar, let, constlet: variables within the scope where they were declaredconst: variables that should not changevar a;) and assign (a = 7;)console.log() to see values in the console+), subtraction (-), multiplication (*), division (/)++), decrement (--)%+=, -=, *=, /=)var myName =