摘要: <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <meta name="viewport" content="wi 阅读全文
posted @ 2022-09-19 11:45 wolfsocket 阅读(9) 评论(0) 推荐(0) 编辑
摘要: window.onload = function () { // 数组解构 let [x, y, z] = [true, [1, 2, 3], { id: 1 }]; //等价 // x=true; // y=[1,2,3]; // z={id:1}; let arr = [10, 20]; if 阅读全文
posted @ 2022-09-19 11:45 wolfsocket 阅读(19) 评论(0) 推荐(0) 编辑
摘要: <!-- <script> // const 声明一个只读的常量, 只能读取——基本类型 初始化的时候必须给值 (另一种是引用类型) 栈里 const abc = 111; // abc = 222; // 报错 const abcarray = { name: 'kkk', } abcarray. 阅读全文
posted @ 2022-09-19 11:44 wolfsocket 阅读(21) 评论(0) 推荐(0) 编辑
摘要: <!-- <script> window.onload = function () { var a = 10; let b = 20; const c = 30; // ES5 预解析 变量提升 var function 结果 undefined console.log(x); var x = 11 阅读全文
posted @ 2022-09-19 11:43 wolfsocket 阅读(16) 评论(0) 推荐(0) 编辑