补全JavaScript函数,要求返回底数为第一个参数,幂为第二个参数的数值。

function _pow(number,power) {
	// 补全代码
	return (power == 0 ? 1 : number * _pow(number, power-1))
}