for in 和 for of , 新功能:字符集 ``
``字符集,`这是新功能:${变量名} 不用“+”的连接符`
******************************
let a = [
{name:'张明轩', age:3},
{name:'张明朗', age:1}
];
//for( in ) 这里的i为数组a的键
for(let i in a){
document.write(
` //这个为js新功能,字符集,可以省略连接符+ , 变量使用: ${变量名}
<ul>
//这里调用的是数组下的对象类,i为键
<li>姓名:${a[i].name} 年龄:${a[i].age}</li>
</ul>
`
);
}
**********************************
let b = ['张浩刚', 32];
//for( of ) 下面的n直接就是b的值
for(let n of b){
document.write(
`
${n}
`
);
}
***********************************
//这里使用for of 更方便
let a = [
{name:'张明轩', age:3},
{name:'张明朗', age:1}
];
for(let i of a){
document.write(
` //这个为js新功能,字符集,可以省略连接符+ , 变量使用: ${变量名}
<ul>
//这里调用的是数组下的对象类
<li>姓名:${n.name} 年龄:${n.age}</li>
</ul>
`
);
}
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!