首页 >

Javascript学习笔记-详解in运算符【javascript】

web前端|js教程Javascript学习笔记-详解in运算符【javascript】
in运算符
web前端-js教程
A、判断
语法
prop in objectName
如果objectName指向的对象中含有prop这个属性或者键值,in运算符会返回true。
java页游源码,vscode小程序可视化,ubuntu 前置声音,tomcat9勒索,爬虫 python 报告,好用的php开发工具,seo泛目录怎么操作外推lzw
 
var arr = ['one','two','three','four'];
arr.five = '5';
0 in arr;//true
'one' in arr; //false,只可判断数组的键值
'five' in arr;//true,'five'是arr对象的属性
'length' in arr;//true

原型链
in运算符会在整个原型链上查询给定的prop属性

导航彩票源码,vscode备忘插件,ubuntu mail,tomcat 审计日志,微信记录删 sqlite,bootstrap幻灯片插件,ul是属于前端框架吧,爬虫python软件从那里下载,php 解释语言,仲恺seo推广,asp.net 多语言网站,网页图片左移,京东导航模板代码lzw
 
Object.prototype.sayHello = 'hello,world';
var foo = new Object();
'sayHello' in foo;//true;
'toString' in foo;//true;
'hasOwnProperty' in foo;//true;

对象与字面量
in运算符在对待某些特定类型(String,Number)的对象和字面量时显得不尽相同

程序侠 源码 下载地址,vscode如何重新排格式,ubuntu 切换账号,tomcat到东方通,田地里爬虫,php调用c 程序设计,福州seo页面优化推广产品,类似建站之星网站,bootstrap 前端模板 ie8lzw
 
var sayHelloObj = new String('hello,world');
var sayHello = 'hello,world';
var numObj = new Number(1);
var num = 1;
'toString' in sayHelloObj; //true
'toString' in sayHello; //类型错误
'toString' in numObj;//true
'toString' in num;//类型错误

究其原因,在MDN找到这样一段关于String对象和字面量转换的介绍,似乎可以解释这个原因:

Because JavaScript automatically converts between string primitives and String objects, you can call any of the methods of the String object on a string primitive. JavaScript automatically converts the string primitive to a temporary String object, calls the method, then discards the temporary String object. For example, you can use the String.length property on a string primitive created from a string literal
试着这样理解:因为in是运算符而非一个方法(method),所以无法让string字面量自动转换成String对象,又因为in运算符待查询方不是对象而是一个字符串(按老道Douglas的说法,只是object-like的类型),所以报类型错误。

B、遍历

很常用到的for…in循环语句,此语句中的in需要遵循另外一套语法规范:

for (variable in object)
statement
与单独使用in作为运算符不同,for…in循环语句只遍历用户自定义的属性,包括原型链上的自定义属性,而不会遍历内置(build-in)的属性,如toString。

对象

 
function Bird(){
this.wings = 2;
this.feet = 4;
this.flyable = true;
}
var chicken = new Bird();
chicken.flyable = false;
for(var p in chicken){
alert('chicken.' + p + '=' + chicken[p]);
}

String对象,经过测试Firefox,Chrome,Opera,Safari浏览器都是给出了注释中的结果,只有IE浏览器只给出’more’和’world’

 
var str = new String('hello');
str.more = 'world';
for(var p in str){
alert(p);//'more',0,1,2,3,4
alert(str[p]);//'world','h','e','l','l','o'
}

字面量
遍历数组字面量的键值和属性

 
var arr = ['one','two','three','four'];
arr.five = 'five';
for(var p in arr){
alert(arr[p]);//'one','two','three','four','five'
}

遍历string字面量,虽说单独在string字面量前面使用in运算符会报类型错误,不过下面的代码却能够正常运行,此时IE浏览器是毫无声息

 
var str = 'hello';
str.more = 'world';
for(var p in str){
alert(p);//0,1,2,3,4
alert(str[p]);//'h','e','l','l','o'
}

综上
ECMA虽然有这方面的规范,但浏览器之间还是存在着差异,鉴于此,并不推荐用for…in去遍历字符串,也不推荐拿去遍历数组(如例子所示,为数组加上自定义属性,遍历就会被搞乱)

在遍历对象方面,我们还可以使用对象的内置方法hasOwnProperty()排除原型链上的属性,进一步加快遍历速度,提升性能

function each( object, callback, args ){ 
var prop;
for( prop in object ){
if( object.hasOwnProperty( i ) ){
callback.apply( prop, args );
}
}
}

Javascript学习笔记-详解in运算符【javascript】
  • JavaScript中in运算符有什么用法
  • JavaScript中in运算符有什么用法 | JavaScript中in运算符有什么用法 ...

    Javascript学习笔记-详解in运算符【javascript】
  • mysql条件查询sql语句怎么写 |maven 添加mysql 架包
  • mysql条件查询sql语句怎么写 |maven 添加mysql 架包 | mysql条件查询sql语句怎么写 |maven 添加mysql 架包 ...

    Javascript学习笔记-详解in运算符【javascript】
  • mysql查询字段中的某些值 |导出字段唯一mysql
  • mysql查询字段中的某些值 |导出字段唯一mysql | mysql查询字段中的某些值 |导出字段唯一mysql ...