📅  最后修改于: 2022-03-11 15:02:01.645000             🧑  作者: Mango
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./*