For…In 声明用于遍历数组或者对象的属性(对数组或者对象的属性进行循环操作)。
var Status = function(arg){ this.arg = arg;}Status.prototype.getStatus = function(){ return this.arg;}
接着实例化:
var instance = new Status('a test string');instance.getStatus();instance.ooxx = 'ooxx';
用 for…in 遍历属性:
for(i in instance){ console.log(i);}
看下运行结果:
argooxxgetStatus
可见原型方法也被遍历出来的,但事实上往往并不想要。于是需要这么干:
for(i in object){ if(object.hasOwenProperty(i)){ //... }}