2022年5月8日

js解构复制语法

摘要: let a = { person:{ name:"ken", tall:180 } } let {person} = a const [x,y] = [11,12] let a, b, rest; [a, b] = [10, 20]; console.log(a); // expected outp 阅读全文

posted @ 2022-05-08 07:58 Kooing 阅读(60) 评论(0) 推荐(0) 编辑

导航