gpt4 book ai didi

javascript - 将数组从 javascript 函数传递到另一个函数

转载 作者:行者123 更新时间:2023-11-28 21:24:53 25 4
gpt4 key购买 nike

我想在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/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com