02 2021 档案

摘要:1. 声明变量 //Longhand let x; let y = 20; //Shorthand let x, y = 20; 2. 给多个变量赋值(使用数组解构来在一行中给多个变量赋值) //Longhand let a, b, c; a = 5; b = 8; c = 12; //Shorth 阅读全文
posted @ 2021-02-03 12:33 蓝色生活 阅读(83) 评论(0) 推荐(0) 编辑
摘要:1. if多条件判断 1 // 冗余 2 if (x 'abc' || x 'def' || x 'ghi' || x 'jkl') {} 3 4 // 简洁 5 if (['abc', 'def', 'ghi', 'jkl'].includes(x)) {} 2. if...else... // 阅读全文
posted @ 2021-02-03 11:22 蓝色生活 阅读(59) 评论(0) 推荐(0) 编辑