const options = apple banana orange kiwi grape;let i = -1;let randomIndex = getRandomIndex;function getRandomIndex return MathfloorMathrandom optionslength;function randomSelect if i === -1 i
const options = ['apple', 'banana', 'orange', 'kiwi', 'grape']; let i = -1; let randomIndex;
function getRandomIndex() { return Math.floor(Math.random() * options.length); }
function randomSelect() { do { randomIndex = getRandomIndex(); } while (i === randomIndex); i = randomIndex; return options[i]; }
原文地址: https://www.cveoy.top/t/topic/ckW6 著作权归作者所有。请勿转载和采集!