Home>Article>Web Front-end> javascript随机抽取0-100之间不重复的10个数_javascript技巧

javascript随机抽取0-100之间不重复的10个数_javascript技巧

PHP中文网
PHP中文网 Original
2016-05-16 15:13:36 2623browse

目前只学会两种简单的方法,帮助大家实现随机抽取0-100之间不重复的10个数,具体内容如下

第一种利用数组长度可改写的特点

思路:可以从0到100的数用for循环出来放在一个数组中,然后将这100个数利用sort()随机打乱,然后通过将这个数组的length改写为10,便取到了10个不同的数.

    Document  

第二种利用的是json对象的key值唯一的特点.

思路:先分别定义一个保存数组的空数组和一个空的json对象,

    Document  

以上就是javascript随机抽取0-100之间不重复的10个数_javascript技巧的内容,更多相关内容请关注PHP中文网(m.sbmmt.com)!


Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn