javascript|web前端 - 10 个很酷、很实用JavaScript特性( 二 )


const data = https://mparticle.uc.cn/api/{
a: 1
b: 'atit'
d: {
test1: {
test2: 'patel'


;
console.log(data.val.test1); // here val is not present in object which leads the error
Error: Cannot read properties of undefined (reading 'test1')
console.log(data?.val); // using this we can check if the val is present in the data or not
9、对象属性赋值
当我们想从两个字符串创建对象并保持与字符串相同的键时 , 可以使用这个技巧来完成 。
let data1 = 'abcd';
let data2 = 'efgh';
//Longhand
let data = https://mparticle.uc.cn/api/{data1: data1 data2: data2;
//Shorthand
let data = https://mparticle.uc.cn/api/{data1 data2;
10、延迟
当 JavaScript 代码量增加时 , 可能会导致浏览器必须等到所有脚本都执行完后再加载 DOM , 从而增加了等待时间 。
通过使用这个属性 , 我们可以告诉浏览器不要等待脚本;相反 , 它将继续构建 DOM , 并在后台加载脚本 。
<p>heading before loads</p>
<script defer src=https://mparticle.uc.cn/"src/test.js\"></script>
<p>heading after loads</p>
今天爱创课堂小编的分享就到这里了 , 有想学习前端 , 了解前端更多知识的同学 , 欢迎大家私信小编领取前端学习资料 , 也可以关注 , 点赞加分享 , 多多支持小编!!!