Can you please let me know how I can select a number randomly from a list and also remove it from the array for the next time? For example I have an array as:
var items = new Array( 2,3,4,5,6,7,8,9,10 );
now I would like to pick one item when a Pick button pushed and add the picked value to a div and also remove the picked item from the array so in next Pick button push it wont be there until to select all of items.
Thanks for your time
Can you please let me know how I can select a number randomly from a list and also remove it from the array for the next time? For example I have an array as:
var items = new Array( 2,3,4,5,6,7,8,9,10 );
now I would like to pick one item when a Pick button pushed and add the picked value to a div and also remove the picked item from the array so in next Pick button push it wont be there until to select all of items.
Thanks for your time
Share Improve this question edited Jan 29, 2016 at 21:04 canon 41.8k10 gold badges76 silver badges101 bronze badges asked Jul 3, 2013 at 18:06 Mona CoderMona Coder 6,31618 gold badges70 silver badges138 bronze badges 2- 1 Have you tried anything so far? Seems like you could break this down into pieces, like figuring out how to generate a random number, and how to get an item at an index in an array, how to add text to a div, and how to remove items from an array. You have a lot of questions here. Not to say that people here can't help, but please have a go at doing it yourself before asking people to write all your code for you. – Jordan Commented Jul 3, 2013 at 18:08
- Hi Jordan, i do not have problem by adding the value to a div. I have issue by selecting the value from the list and meanwile removing that value from the list as well – Mona Coder Commented Jul 3, 2013 at 18:11
2 Answers
Reset to default 7Array.splice()
var items = ["a","b","c","d"];
var randomIndex = Math.floor(Math.random() * items.length);
var randomItem = items.splice(randomIndex, 1)[0];
console.log("random item: %o", randomItem);
console.log("remaining items: %o", items);
If shuffling the array doesn't matter :
items.sort(function() { return 0.5 - Math.random();}).pop();
FIDDLE
EDIT:
I should probably have been a little clearer as the fiddle doesn't really take advantage of the shuffling.
The array only needs to be shuffled once to make it random, after that there is no reason to shuffle it again, just pop of the last value:
var items = new Array( 2,3,4,5,6,7,8,9,10 );
items.sort(function() { return 0.5 - Math.random();})
$('#test').on('click', function() {
var ran = items.pop();
alert(ran ? ran : 'No more numbers in array');
});
JSPERF
JSFIDDLE