📜  node js检查变量的类型 - Javascript代码示例

📅  最后修改于: 2022-03-11 15:04:24.594000             🧑  作者: Mango

代码示例2
if (typeof i != "number") {
    console.log('This is not number');
}