我想将数组从函数传递到Java脚本中的另一个函数,但是当我将其传递给浏览器时,我不知道为什么。这是我的代码:
function convertToBinary(decNumber){
var copyDecNum=Number(decNumber);
var binaryValues= new Array();
var cnt=0;
while(copyDecNum.value!=0)
{
binaryValues[cnt]=Math.floor(copyDecNum.value%2);
copyDecNum.value=Math.floor(copyDecNum.value/2);
cnt++;
}
binaryValues[cnt]=copyDecNum%2;
viewResult(binaryValues,decNumber);
}
function viewResult(binaryValues,decNumber){
alert("here"+binaryValues.length); //here's the problem
}
有人可以帮忙吗?
最佳答案
如果要将十进制数转换为二进制,请使用以下命令,
var dec2bin = function (num) {
return +(num.toString(2)) //convert number to binary string, then make that a number
}
关于javascript - 将数组从javascript函数传递给另一个函数,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/5322286/