题解 | #基本数据类型检测#
基本数据类型检测
https://www.nowcoder.com/practice/7a8d09b2a0d54d9d95b8f47b1f4bbc16
function _typeof(value) { // 检测所有数据类型 return Object.prototype.toString.call(value).slice(8, -1).toLowerCase(); // 检测基本数据类型 // return typeof(value); }
基本数据类型检测
https://www.nowcoder.com/practice/7a8d09b2a0d54d9d95b8f47b1f4bbc16
function _typeof(value) { // 检测所有数据类型 return Object.prototype.toString.call(value).slice(8, -1).toLowerCase(); // 检测基本数据类型 // return typeof(value); }
相关推荐