上一页 1 ··· 18 19 20 21 22
摘要: 1 let a = 'abcd' //let a = ['a','b','c','d'] 亦可 2 console.log(a.includes('a')) //true 3 console.log(a.indexOf('a')) //0 4 includes:es6中新增加的方法,返回值为布尔值 阅读全文
posted @ 2020-08-07 13:43 yw3692582 阅读(303) 评论(0) 推荐(0) 编辑
摘要: 1 let [a,b] = ['ca','CA'] 2 console.log(a.toUpperCase(),b.toLowerCase()) 阅读全文
posted @ 2020-08-07 13:14 yw3692582 阅读(405) 评论(0) 推荐(0) 编辑
摘要: 1 function a(){ 2 console.log(arguments.length) 3 } 4 a(10) arguments是就是传递的参数,是以一个数组的形式来保存参数的 阅读全文
posted @ 2020-08-07 12:20 yw3692582 阅读(885) 评论(0) 推荐(0) 编辑
摘要: 1 获取当前的时间戳:+new Date() 或 Date.now() 或 Date.parse(new Date()) 阅读全文
posted @ 2020-08-07 12:12 yw3692582 阅读(122) 评论(0) 推荐(0) 编辑
上一页 1 ··· 18 19 20 21 22