请问JS中pow,random,round,exp这几个数学函数的作用是什么?Math.pow(x,y):返回 x 的 y 次幂。Math.random()返回介于 0(包含) ~ 1(不包含) 之间的一个随机数.Math.round()四舍五入Math.exp(x): 返回 e 的 x 次幂的值。 E 为自然底数2023-03-18JavaScript220