题解 | #基本数据类型检测#
基本数据类型检测
http://www.nowcoder.com/practice/7a8d09b2a0d54d9d95b8f47b1f4bbc16
function _typeof(value) {
// 补全代码
return Object.prototype.toString.call(value).slice(8, -1).toLowerCase();
}
function _typeof(value) {
// 补全代码
return typeof(value);
}