PHP
·
发表于 5年以前
·
阅读量:8299
返回值的本机类型。
如果值未定义或为 null, 则返回小写的构造函数名称、"未定义" 或 "null"
const getType = v =>
v === undefined ? 'undefined' : v === null ? 'null' : v.constructor.name.toLowerCase();
// getType(new Set([1,2,3])) -> "set"