js中如何对数据类型进行区分判断?有几种方法?

1.typeof

返回值 :返回值包括 "undefined", "boolean", "number", "string", "bigint", "symbol", "object" 和 "function"。

需要注意的就是typeof无法区分引用数据类型(对象和数组 ),且对 null的判断为object

javascript 复制代码
typeof 42; // "number"
typeof "Hello"; // "string"
typeof true; // "boolean"
typeof undefined; // "undefined"
typeof Symbol("id"); // "symbol"
typeof function() {}; // "function"
typeof NaN; // "number"
typeof null; // "object" (这是 JavaScript 的一个历史遗留问题)
typeof {}; // "object"
typeof []; // "object"

2.instanceof 操作符
返回值 :返回布尔值 truefalse

需要注意的是instanceof 适用于引用数据类型,如对象、数组、函数等。对于基本数据类型(如NumberStringBoolean等),instanceof 并不能正确区分。

javascript 复制代码
let arr = [];
arr instanceof Array; // true
let obj = {};
obj instanceof Object; // true
function Person(name) {
    this.name = name;
}
let person = new Person("John");
person instanceof Person; // true

// 对于基本数据类型,instanceof 的行为不如预期:
let num = 42;
console.log(num instanceof Number); // false
let str = "Hello";
console.log(str instanceof String); // false
let bool = true;
console.log(bool instanceof Boolean); // false

3.Object.prototype.toString.call() 方法

用法 :使用 Object.prototype.toString.call() 方法可以获取对象的内部属性 [[Class]] 的值,从而准确判断其类型。
返回值 :返回一个以 [object 开头、] 结尾的字符串。

javascript 复制代码
Object.prototype.toString.call(42); // "[object Number]"
Object.prototype.toString.call("Hello"); // "[object String]"
Object.prototype.toString.call(true); // "[object Boolean]"
Object.prototype.toString.call(undefined); // "[object Undefined]"
Object.prototype.toString.call(null); // "[object Null]"
Object.prototype.toString.call({}); // "[object Object]"
Object.prototype.toString.call([]); // "[object Array]"
Object.prototype.toString.call(function() {}); // "[object Function]"
Object.prototype.toString.call(Symbol("id")); // "[object Symbol]"

小结

  • 基本数据类型 :使用typeofObject.prototype.toString.call()来区分。
  • 引用数据类型 :使用instanceofObject.prototype.toString.call()来区分。

小补充:

constructor

javascript 复制代码
(2).constructor === Number// true
([]).constructor === Array // true
隐患:
constructor代表的是构造函数指向的类型,可以被修改的js
function Fn(){}
Fn.prototype = new Array();
var f = new Fn();
// 在这种情况下,f的constructor属性不再指向Fn,而是指向 Array,因为 Fn.prototype 被设置为一个 Array 实例
// 在使用 JavaScript 中的原型继承时,要特别注意 constructor 属性可能带来的不准确性,并在必要时手动重置它以确保类型检测的可靠性。对于类型检测,Object.prototype.toString.call() 方法更为可靠,因为它不受 constructor 属性修改的影响。
相关推荐
qq_433618441 分钟前
shell 编程(二)
开发语言·bash·shell
charlie11451419115 分钟前
C++ STL CookBook
开发语言·c++·stl·c++20
袁袁袁袁满15 分钟前
100天精通Python(爬虫篇)——第113天:‌爬虫基础模块之urllib详细教程大全
开发语言·爬虫·python·网络爬虫·爬虫实战·urllib·urllib模块教程
还是大剑师兰特21 分钟前
什么是尾调用,使用尾调用有什么好处?
javascript·大剑师·尾调用
ELI_He99922 分钟前
PHP中替换某个包或某个类
开发语言·php
m0_7482361129 分钟前
Calcite Web 项目常见问题解决方案
开发语言·前端·rust
倔强的石头10637 分钟前
【C++指南】类和对象(九):内部类
开发语言·c++
Watermelo61742 分钟前
详解js柯里化原理及用法,探究柯里化在Redux Selector 的场景模拟、构建复杂的数据流管道、优化深度嵌套函数中的精妙应用
开发语言·前端·javascript·算法·数据挖掘·数据分析·ecmascript
m0_7482489443 分钟前
HTML5系列(11)-- Web 无障碍开发指南
前端·html·html5
m0_748235611 小时前
从零开始学前端之HTML(三)
前端·html