I'm new to Javascript and been learning. I'm trying to set a button to activate random functions. button is fine and if I assign getGroupOne() to a button or getGroupTwo() to a button it works fine.
The only problem is somewhere in the following code.
Well when I click my button only getGroupTwo() works with the following code,
function getGroup() {
var Group = new Array (getGroupOne(), getGroupTwo());
var whichOne = Math.floor(Math.random()*Group.length);
return Group[whichOne];};
But when I flip them ... only getGroupOne() works with the following code,
function getGroup() {
var Group = new Array (getGroupTwo(), getGroupOne());
var whichOne = Math.floor(Math.random()*Group.length);
return Group[whichOne];};
Could someone let me know what is the problem, I looked at a couple answers but not completly sure how to fix this.
Thank you,
var Group = [getGroupTwo, getGroupOne];. But you don't show what you are doing with the return value ofgetGroup, so it's hard to tell. In any case, if you want a random number from a range including the upper bound, you have to add one:Math.floor(Math.random()*(Group.length + 1)). See developer.mozilla.org/en-US/docs/JavaScript/Reference/…. – Felix Kling Aug 14 '12 at 1:39var Group = [getGroupTwo, getGroupOne];', then you'll callgetGroup()(). First()invokesgetGroupto receive one of the two functions, the other()invokes that received function. – Imp Aug 14 '12 at 1:40getGroupOne()andgetGroupTwo()return? Do you want to join two arrays intovar Groupor do you want an array with length 2? – Gerard Sexton Aug 14 '12 at 1:52