es7與es8其餘知識

這是一些關於es7與es8的一些小知識,都是一些比較經常使用的,能夠簡單瞭解下

求冪運算符(**)

console.log(2**3);//8
console.log(4**4);//256
//以往的寫法
console.log(Math.pow(2,3));//8
console.log(Math.pow(4,4));//256

另外一種寫法

let a = 7
a **= 12
let b = 2
b **= 7
console.log(a === Math.pow(7,12)) // true
console.log(b === Math.pow(2,7)) // true

includes方法

//包含數組裏的數,打印true。
//不包含數組裏的數,則打印false。
var aa=[1,2,3];
console.log(aa.includes(5));//false
console.log(aa.includes(3));//true

字符填充函數padStart 和 padEnd

padStart()在開始部位填充,返回一個給出長度的字符串,填充物給定字符串,把字符串填充到指望的長度。從字符串的左邊開始

console.log('react'.padStart(10).length)         // "       react" is 10
console.log('backbone'.padStart(10).length)         // "  backbone" is 10

padEnd從字符串的尾端右邊開始填充。第二個參數,你能實際上用一個任何長度的字符串。

console.log('react'.padEnd(10, ':-)'))         // "react:-):-" is 10
console.log('backbone'.padEnd(10, '*'))         // "backbone**" is 10
相關文章
相關標籤/搜索