如何利用js语法判断数据类型

418 ℃

typeof方法

typeof 123  // 返回 "number"
typeof "Hello World"  // 返回 "string"
typeof true  // 返回 "boolean"
typeof undefined  // 返回 "undefined"
typeof null  // 返回 "object"
typeof [1, 2, 3]  // 返回 "object"
typeof {"name": "小米", "age": 32}  // 返回 "object"
typeof function() {}  // 返回 "function"

Object.prototype.toString方法

Object.prototype.toString.call(123)  // 返回 "[object Number]"
Object.prototype.toString.call("Hello World")  // 返回 "[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([1, 2, 3])  // 返回 "[object Array]"
Object.prototype.toString.call({"name": "小米", "age": 32})  // 返回 "[object Object]"
Object.prototype.toString.call(function() {})  // 返回 "[object Function]"

instanceof方法

var arr = [1, 2, 3];
console.log(arr instanceof Array);  // 返回 true
 
var obj = {"name": "小米", "age": 22};
console.log(obj instanceof Object);  // 返回 true
 
function Person(name, age) {
  this.name = name;
  this.age = age;
}
var alex = new Person("小米", 32);
console.log(alex instanceof Person);  // 返回 true

constructor方法

var arr = [1, 2, 3];
console.log(arr.constructor === Array);  // 返回 true
 
var obj = {"name": "小米", "age": 18};
console.log(obj.constructor === Object);  // 返回 true
 
function Person(name, age) {
  this.name = name;
  this.age = age;
}
var alex = new Person("小米", 18);
console.log(alex.constructor === Person);  // 返回 true

一款专门用于在JavaScript和TypeScript的货币处理工具库——Dinero.js

JavaScript动态日历:如何用变量num精准控制月份递增?

一款开源JavaScript库,实现图片背景色智能提取与融合——AutoHue.js

JavaScript动态绑定方法不执行正确代码示例

一个可以在网页上实现流畅、酷炫的过渡效果JavaScript工具库——Barba.js

标签: constructor方法, instanceof方法, Object.prototype.toString方法, typeof方法

上面是“如何利用js语法判断数据类型”的全面内容,想了解更多关于 js 内容,请继续关注web建站教程。

当前网址:https://m.ipkd.cn/webs_4791.html

声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!

帝国CMS网站管理系统V7.2版数据字典所有数据表解
帝国CMS里date()函数时间格式的转换
php代码30秒才响应是什么原因(附解决方法)
layui分页显示所有字段
git教程之操作标签