Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.6k views
in Technique[技术] by (71.8m points)

数组下标问题

相关代码

    
    var arr = ["0", "1", "2", "3", "4", "5", "6", "7", "8", "9", "a", "b", "c", "d", "e", "f"]
    console.log(Math.floor(Math.random() * 17));
    // console.log(typeof (Math.floor(Math.random() * 17)));
    console.log(arr[Math.floor(Math.random() * 17)]);

以0至16随机数作为下标 找不到对应的数组中的数据
例如image.png

下标为Math.floor(Math.random() * 17) //16
但arr[Math.floor(Math.random() * 17)] 却为7而不是f
这是为什么呢?


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
let index = Math.floor(Math.random() * 17)

用个变量保存起来吧,不然每次随机数出来的值都不一样


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...