摘要:
正则表达式 (RegExp) 一、正则的创建 字面量 let reg = /a/b a :规则,正则要验证的规则 b: 修饰符,是否全局查找,是否区分大小写 二、构造函数 let reg= new RegEsp(a,b); 正则的方法 1.test () let reg =/a/; let str 阅读全文
摘要:
集合 set (ES6新增) 特点:类似于数组,成员都是唯一的,没有重复的值。 一、创建 Set 例 :let s1 = new Set(); console.log(s1); 初始化 let s2 = new Set(['a','b','c','d']) console.log(s2); 二、Se 阅读全文
摘要:
循环语句 while do while for while (条件){ 条件满,时执行的代码 } 例: let num = 5; while(num){num - -; console .log(4,3,2,1,0) } 输出4,3,2,1,0. do {执行的代码}while(条件); (是先执行 阅读全文