2024年9月28日

JS 中的双问号“??”是什么

摘要: js的??和 ||的功能类似,但有点小区别 let a= foo|| "default"; //当左边的值为"",0,null或undefine时都会返回右边的值 let b = foo ?? "default"; // 当左边的值为 null 或undefine时才会返回右边的值 阅读全文

posted @ 2024-09-28 14:46 爱泽拉斯 阅读(3) 评论(0) 推荐(0) 编辑

2024年9月24日

js数组转对象

摘要: 这种对象形式转法。 let array = [1,2,3,4,5]; let obj ={}; obj = Object.assign({}, array) console.log(obj); // {1,2,3,4,5} 阅读全文

posted @ 2024-09-24 16:41 爱泽拉斯 阅读(3) 评论(0) 推荐(0) 编辑

导航