博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
js包装对象
阅读量:5462 次
发布时间:2019-06-16

本文共 443 字,大约阅读时间需要 1 分钟。

var str = "hello world";

str.len = 4;

console.log(str.len); //undefined

console.log(typeof str);//string

第二行代码创建一个临时字符串对象,并给其len属性赋值位4,随机销毁这个对象。

第三行通过元素的(没有修改过的)字符串值创建一个新的字符串对象,尝试读取其len属性,这个属性自然不存在,表达式求值结果为unddfined。

var str1 =new String("hello world)";

str1.len = 4;

console.log(str1.len);//4

console.log(typeof str1);//object

 

console.log(str1 == str); //true

console.log(str1 === str); //false

转载于:https://www.cnblogs.com/ftxc/p/7262874.html

你可能感兴趣的文章
调整Tomcat的并发线程到5000+
查看>>
[Typescript 2] Nullable Types - Avoiding null and undefined Bugs
查看>>
[Javascirpt AST] Babel Plugin -- create new CallExpression
查看>>
_itemmod_strengthen_item
查看>>
UVa 10622 (gcd 分解质因数) Perfect P-th Powers
查看>>
hibernate SQL聚合查询
查看>>
【BZOJ4278】[ONTAK2015]Tasowanie 后缀数组
查看>>
【BZOJ2045】双亲数 莫比乌斯反演
查看>>
【CF772D】Varying Kibibits FWT
查看>>
微信网页授权调试
查看>>
不要有这样的思维定势
查看>>
十万个为什么 —— 自然的好奇
查看>>
指针应用时的注意事项
查看>>
作为电磁波的 Wi-Fi 信号
查看>>
一步步学会用docker部署应用(nodejs版)
查看>>
让表单input等文本框为只读不可编辑的方法-转
查看>>
Flink window Function - ProcessAllWindowFunction
查看>>
创建物料批次特性
查看>>
UI基础一:值节点赋值
查看>>
sql
查看>>