freeCodeCamp Challenge Guide: Use typeof to Check the Type of a Variable

Use typeof to Check the Type of a Variable


Hints

Hint 1

Use console.log(typeof variable) to display the type of the desired variable.


Solutions

Solution 1 (Click to Show/Hide)
console.log(typeof seven);
console.log(typeof three);
10 Likes