欢迎来到博客园~~~
摘要: // 二进制声明 let binary = 0B010101 console.log(binary) //21 // 八进制声明 let octal = 0O666 console.log(octal) //438 //判断是否是数字 let a = 11 console.log(Number.is 阅读全文
posted @ 2019-05-09 20:37 孙~洋 阅读(564) 评论(0) 推荐(0) 编辑
摘要: (1)字符串模板 let foo='string' let bar =`这是一个字符串${foo}` conso.log(bar) //这是一个字符串string (2)字符串查找 includes方法==>bar中是否含有foo这个字符串,有则返回true,没有则返回false console.l 阅读全文
posted @ 2019-05-09 19:30 孙~洋 阅读(579) 评论(0) 推荐(0) 编辑
摘要: (1)对象扩展运算符 let arr1 = [ 'www', 'baidu', 'com'] let arr2= arra1 arr2.push( 'js' ) console.log(arr2) // [ 'www', 'baidu', 'com' ] console.log(arr1) // [ 阅读全文
posted @ 2019-05-09 11:17 孙~洋 阅读(2261) 评论(0) 推荐(2) 编辑
摘要: 1、数组的解构赋值 数组的解构赋值为顺序执行 let [a,b,c]=[0,1,2] console.log(a) //0 console.log(b) //1 console.log(c) //2 let [a,[b,c],d]=[0,[1,2],3] console.log(a) //0 con 阅读全文
posted @ 2019-05-09 09:21 孙~洋 阅读(481) 评论(0) 推荐(1) 编辑