자바 스크립트 배열에서 임의의 항목 가져 오기 [중복]
이 질문에 이미 답변이 있습니다.
- JavaScript 배열에서 임의의 값 얻기 23 답변
var items = Array(523,3452,334,31,...5346);
무작위 아이템은 items
어떻게 얻 나요?
var item = items[Math.floor(Math.random()*items.length)];
이 문제를 해결하기 위해 정말로 jQuery를 사용해야 하는 경우 :
(function($) {
$.rand = function(arg) {
if ($.isArray(arg)) {
return arg[$.rand(arg.length)];
} else if (typeof arg === "number") {
return Math.floor(Math.random() * arg);
} else {
return 4; // chosen by fair dice roll
}
};
})(jQuery);
var items = [523, 3452, 334, 31, ..., 5346];
var item = jQuery.rand(items);
이 플러그인은 배열이 주어지면 임의의 요소를 반환하거나, 숫자가 주어지면 [0 .. n)의 값을 반환하거나, 다른 어떤 것이 든 보장 된 임의 값을 반환합니다!
추가 재미를 위해 배열의 길이에 따라 함수를 재귀 적으로 호출하여 배열 반환을 생성합니다. :)
http://jsfiddle.net/2eyQX/의 작업 데모
밑줄 (또는 loDash :)) 사용 :
var randomArray = [
'#cc0000','#00cc00', '#0000cc'
];
// use _.sample
var randomElement = _.sample(randomArray);
// manually use _.random
var randomElement = randomArray[_.random(randomArray.length-1)];
또는 전체 배열을 섞으려면 :
// use underscore's shuffle function
var firstRandomElement = _.shuffle(randomArray)[0];
1. 솔루션 : 어레이 프로토 타입 정의
Array.prototype.random = function () {
return this[Math.floor((Math.random()*this.length))];
}
인라인 배열에서 작동합니다.
[2,3,5].random()
물론 사전 정의 된 어레이
list = [2,3,5]
list.random()
2. solution: define custom function that accepts list and returns element
get_random = function (list) {
return list[Math.floor((Math.random()*list.length))];
}
get_random([2,3,5])
var random = items[Math.floor(Math.random()*items.length)]
Here's yet another way:
function rand(items) {
return items[~~(items.length * Math.random())];
}
jQuery is JavaScript! It's just a JavaScript framework. So to find a random item, just use plain old JavaScript, for example,
var randomItem = items[Math.floor(Math.random()*items.length)]
var rndval=items[Math.floor(Math.random()*items.length)];
var items = Array(523,3452,334,31,...5346);
function rand(min, max) {
var offset = min;
var range = (max - min) + 1;
var randomNumber = Math.floor( Math.random() * range) + offset;
return randomNumber;
}
randomNumber = rand(0, items.length - 1);
randomItem = items[randomNumber];
credit:
Javascript Function: Random Number Generator
// 1. Random shuffle items
items.sort(function() {return 0.5 - Math.random()})
// 2. Get first item
var item = items[0]
Shorter:
var item = items.sort(function() {return 0.5 - Math.random()})[0];
If you are using node.js, you can use unique-random-array. It simply picks something random from an array.
const ArrayRandomModule = {
// get random item from array
random: function (array) {
return array[Math.random() * array.length | 0];
},
// [mutate]: extract from given array a random item
pick: function (array, i) {
return array.splice(i >= 0 ? i : Math.random() * array.length | 0, 1)[0];
},
// [mutate]: shuffle the given array
shuffle: function (array) {
for (var i = array.length; i > 0; --i)
array.push(array.splice(Math.random() * i | 0, 1)[0]);
return array;
}
}
An alternate way would be to add a method to the Array prototype:
Array.prototype.random = function (length) {
return this[Math.floor((Math.random()*length))];
}
var teams = ['patriots', 'colts', 'jets', 'texans', 'ravens', 'broncos']
var chosen_team = teams.random(teams.length)
alert(chosen_team)
참고URL : https://stackoverflow.com/questions/5915096/get-random-item-from-javascript-array
'Programing' 카테고리의 다른 글
MySQL 테이블에 삽입하거나 존재하는 경우 업데이트 (0) | 2020.09.29 |
---|---|
모든 사용자의 모든 크론 작업을 어떻게 나열합니까? (0) | 2020.09.29 |
Node.js를 사용하려면 ES6 가져 오기 / 내보내기가 필요합니다. (0) | 2020.09.29 |
Liskov Substitution Principle의 예는 무엇입니까? (0) | 2020.09.29 |
Visual Studio .suo 및 .user 파일을 소스 제어에 추가해야합니까? (0) | 2020.09.29 |