let counter = 120; // counter is a number
console.log(typeof(counter)); // "number"
counter = false; // counter is now a boolean
console.log(typeof(counter)); // "boolean"
counter = "Hi"; // counter is now a string
console.log(typeof(counter)); // "string"Code language: JavaScript (javascript)
typeof("string"); //string
typeof(123); //number
typeof("iAmAString");//This should return 'string'
//NO camelCase, as it is a JS Keyword
typeof(variable)
var x = "Hello World";
typeof x; // "string"