码迷,mamicode.com
首页 > 其他好文 > 详细

复杂随机函数

时间:2021-05-24 08:06:07      阅读:0      评论:0      收藏:0      [点我收藏+]

标签:log   temp   dex   return   shu   sync   div   rand   --   

  async getHome() {
      let temp = await http.getHome();
      //随机方法
      function getRandomElements(arr, count) {
        var shuffled = arr.slice(0),
          i = arr.length,
          min = i - count,
          temp,
          index;
        while (i-- > min) {
          index = Math.floor((i + 1) * Math.random());
          temp = shuffled[index];
          shuffled[index] = shuffled[i];
          shuffled[i] = temp;
          // console.log(shuffled[i]);
        }
        return shuffled.slice(min);
      }

      if (temp != null) {
        this.recommend.push(getRandomElements(temp, 1));
      }
      // console.log(this.recommend);
    },

复杂随机函数

标签:log   temp   dex   return   shu   sync   div   rand   --   

原文地址:https://www.cnblogs.com/zjxzhj/p/14765463.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!