gpt4 book ai didi

javascript - 如何对数组中的每个对象执行计算,然后输出该数组?

转载 作者:数据小太阳 更新时间:2023-10-29 05:06:51 24 4
gpt4 key购买 nike

我正在尝试用 Javascript (n^e mod n) 为数组中的每个元素 e 执行计算,然后输出随后创建的新数组。我该怎么做?到目前为止,这是我想出的,但代码不起作用。

这是我到目前为止所想出的,但代码不起作用。

function encryptText() {
var plaintext = document.getElementById('plaintext').value;
var n = letterValue(String(plaintext));
ciphertext = array()
foreach(addon_array as key => col) {
ciphertext[key] = Math.pow(col, e) % n;
}
document.getElementById("output3").innerHTML = "Encrypted text = " + ciphertext;
}

我希望得到一个修改后的整数数组(密文)作为结果。谢谢

最佳答案

您可以使用 Javascript 的 map()数组上的函数。

const arr = [1, 2, 3];
const newArr = arr.map(i => i * 2);

// should be [2, 4, 6]
console.log(newArr);

关于javascript - 如何对数组中的每个对象执行计算,然后输出该数组?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55894283/

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