指數運算符

指數運算符(Rick Waldron)

新提出來的特性是將 ** 做爲指數操做的中綴運算符:git

 x ** y

 

與如下表達式運算結果相同:github

Math.pow(x, y)

 

示例:spa

let squared = 3 ** 2; // 9

let num = 3;
num **= 2;
console.log(num); // 9

 

擴展閱讀:code

相關文章
相關標籤/搜索