4.3.2. Evaluating Variables¶
/*When we refer to a variable name, we are evaluating the variable.
The effect is just as if the value of the variable is substituted
for the variable name in the code when executed.*/
let message = "What's up, Doc?";
let n = 17;
let pi = 3.14159;
console.log(message);
console.log(n);
console.log(pi);
//What's up, Doc?
//17
//3.14159