1. 程式人生 > >js 方法

js 方法

返回 var 原型 func property typeof str 方法 eof

1.

獲得屬性,返回布爾值

Array.prototype.hasOwnProperty(‘toString‘)

遍歷屬性,返回布爾值

function hasPrototypeProperty(object, name) {
return !object.hasOwnProperty(name) && (name in object);
}

2.

獲得對象的原型

var array = new Array(‘中‘,‘華‘,‘大‘,‘地‘);
alert(Object.getPrototypeOf(array) == Array.prototype);

3.

獲得構造方法

Object.prototype.constructor == Object

4.

確定原型和實例的關系

①person instanceOf Object

②Object.prototype.isPrototypeOf(person)

js 方法