Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #107.73K
1 Posted Topic
This will occasionally produce an "undefined" error because, the way the randomize formula is set up, it may look for array 0. Since you set up arrays starting with 1, you need to alter the formula thus: [CODE]var whichQuotation=Math.round(Math.random()*(Q-2)+1);[/CODE] This way, the minimum number it will generate is 1, which …
The End.
yehawdude