console.log(typeof "Hello, World!"); console.log(typeof 17); console.log(typeof 3.14); //string //number //number /*If you are not sure what data type a value falls into, precede the value with typeof./*