typeof
var booleanValue = true;
var nullValue = null;
var undefinedValue;
console.log(typeof booleanValue);
console.log(typeof nullValue);
console.log(typeof undefinedValue)
console.log(typeof undeclaredValue)INFO
var booleanValue = true;
var nullValue = null;
var undefinedValue;
console.log(typeof booleanValue);
console.log(typeof nullValue);
console.log(typeof undefinedValue)
console.log(typeof undeclaredValue)