JavaScript表示x的y次幂

一、指数运算符(**)

示例

console.log(2 ** 2); // 4
console.log(3 ** 2); // 9
console.log('3' ** '2'); // 9
console.log((() => {
let x = 2;
let y = 3;
x **= y;
return x;
})()); // 8

二、Math.pow()

1.定义

Math.pow()方法返回基础的指数次幂。

2.语法

Math.pow(x, y)
  • x:基数
  • y:指数

3.示例

console.log(Math.pow(2, 2)); // 4
console.log(Math.pow(3, 2)); // 9
console.log(Math.pow('3', '2')); // 9
let x = 2;
x = Math.pow(x, 3);
console.log(x); // 8

JavaScript表示x的y次幂

上一篇:【C语言训练】尼科彻斯定理


下一篇:潭州课堂25班:Ph201805201 django框架 第五课 自定义简单标签,包含标签,模型类创建,梳理类创建 (课堂笔记)