-
Notifications
You must be signed in to change notification settings - Fork 57
/
Copy pathrandom.js
43 lines (33 loc) · 1.19 KB
/
random.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
var random = {
flipACoin : function(){
if(Math.random() < 0.5) return true;
return false;
},
oneChanceOutOf : function(n){
if(this.getRandomIntUpTo(n - 1) == 0) return true;
else return false;
},
getRandomFloat : function(){
return Math.random();
},
pickRandomly : function(array){
return array[Math.floor(Math.random()*array.length)];
},
getRandomIntUpTo : function(n){
return Math.floor(Math.random()*(n+1));
},
getRandomLetter : function(){
var possible = "abcdefghijklmnopqrstuvwxyz";
return possible.charAt(Math.floor(this.getRandomFloat() * possible.length));
},
pure : function(){
return Math.floor(Math.pow(10, random.getRandomIntUpTo(100)) * random.getRandomFloat());
},
pure2 : function(){
switch(random.getRandomIntUpTo(2)){
case 0: return Math.floor(Math.pow(10, random.getRandomIntUpTo(100)) * random.getRandomFloat()); break;
case 1: return -Math.floor(Math.pow(10, random.getRandomIntUpTo(100)) * random.getRandomFloat()); break;
case 2: return "bug"; break;
}
},
};