标签: javascript
return语句如何在下面的函数中起作用?
function isPowerOfTwo(x) { while (x % 2 === 0) ) { x = x / 2 } return x === 1 }