在JavaScript中,可以使用typeof操作符来判断一个对象的类型。以下是一些最佳实践:
typeof 42 === 'number';
typeof 'hello' === 'string';
typeof true === 'boolean';
typeof function(){} === 'function';
typeof {} === 'object';
typeof [] === 'object';
typeof null === 'object';
let arr = [];
arr instanceof Array; // true
function getType(obj) {
if (typeof obj === 'object') {
if (Array.isArray(obj)) {
return 'array';
} else {
return 'object';
}
} else {
return typeof obj;
}
}
总的来说,最佳实践是根据具体情况选择合适的方法来判断对象的类型,以保证代码的准确性和可读性。