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
    原文作者:师妹儿
    原文地址: https://segmentfault.com/a/1190000010280296
    本文转自网络文章,转载此文章仅为分享知识,如有侵权,请联系博主进行删除。
点赞