gpt4 book ai didi

javascript - 选择一个随机的 json 对象

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:33:10 24 4
gpt4 key购买 nike

我有 json 数据。

[
["Mango","M"],
["Lychee","L"],
["Pineapple","P"],
["Banana","B"]
]

我需要能够随机选择一个数组项(例如 ["Pineapple","P"])。我怎样才能随机选择?

var alphabetNum = "";
$.ajax (
{
url:"getalphabet.json"
}).done(function(data) {
alphabetNum = data;
});

最佳答案

只需取 Math.random() 和数组的长度作为因子。

var array = [
["Mango","M"],
["Lychee","L"],
["Pineapple","P"],
["Banana","B"]
];
var randomItem = array[Math.random() * array.length | 0];

// take only the element with index 0
alert(randomItem[0]);

关于javascript - 选择一个随机的 json 对象,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32050997/

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