// 获取随机数var rand = Math.floor( Math.random() * this.peoples.length );// 随机从数组中取出某值(不会改变原数组)var data = this.peoples.slice(rand, 1)[0];// 随机从数组中取出某值(会改变原数组)var data = this.peoples.splice(rand, 1)[0];
本文共 246 字,大约阅读时间需要 1 分钟。
// 获取随机数var rand = Math.floor( Math.random() * this.peoples.length );// 随机从数组中取出某值(不会改变原数组)var data = this.peoples.slice(rand, 1)[0];// 随机从数组中取出某值(会改变原数组)var data = this.peoples.splice(rand, 1)[0];
转载于:https://www.cnblogs.com/CyLee/p/8390420.html