javascript函数中的return语句

时间:2015-06-10 11:28:57

标签: javascript

return语句如何在下面的函数中起作用?

  function isPowerOfTwo(x) {  
      while (x % 2 === 0) ) {
        x = x / 2
      }
      return x === 1
    }

0 个答案:

没有答案