gpt4 book ai didi

javascript - 用户将确切数量的元素输入到数组中

转载 作者:行者123 更新时间:2023-12-03 01:57:02 25 4
gpt4 key购买 nike

我需要使用带有参数 Nx 的单独函数来限制数组中的元素数量,其中 N 是元素数量在数组 x 内。

首先,用户输入N;第二,恰好 N 个元素放入数组 x

最佳答案

您可以获取新数组的长度并映射所有输入。

function execute(length) {
return Array.from({ length }, (_, i) => prompt('Enter value at index ' + i + ':'));
}

console.log(execute(3));

关于javascript - 用户将确切数量的元素输入到数组中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50187675/

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