function randomElement(array) {
return array[Math.floor(Math.random()*array.length)];
}
得到了这个,但我觉得我错过了一些东西......我正在使用const not var并使用javascript!
帮助!
喝彩!
答案 0 :(得分:-1)
我是个白痴,只要我发布了我的问题,我就把它解决了......
代码是:
function randomElement(array) {
const findRandom = array[Math.floor(Math.random()*array.length)];
return findRandom;
}