js原型方法和对象属性的检测

1. isPortotypeOf() 检测当前对象是否是基于对应构造函数创建出来得

function Student(name){
    this.name = name
}
Student.prototype.show = function(){
    console.log(this.name)
}

var s1 = new Student("王一")
var t = Student.prototype.isPrototypeOf(s1)
console.log(t) // true

2. instanceof 用于判断变量的类型是否为当前构造函数的实例对象

function Student(name){
    this.name = name
}
Student.prototype.show = function(){
    console.log(this.name)
}

var s1 = new Student("王一")
var t = s1 instanceof Student
console.log(t) // true

3. hasOwnProperty() 判断当前的属性和方法是否源于对象的构造函数内部,仅限在构造函数中

function Student(name){
    this.name = name
}
Student.prototype.show = function(){
    console.log(this.name)
}

var s1 = new Student("王一")
var r = s1.hasOwnProperty("show")
console.log(r) // false

4. in 判断当前对象是否具有对应属性和方法

function Student(name){
    this.name = name
}
Student.prototype.show = function(){
    console.log(this.name)
}

var s1 = new Student("王一")
var r = "show" in s1
console.log(r) // true
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值