You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
10 years ago | |
|---|---|---|
| .. | ||
| controllers | 10 years ago | |
| models | 10 years ago | |
| public | 10 years ago | |
| package.json | 10 years ago | |
| readme.md | 10 years ago | |
| server.js | 10 years ago | |
readme.md
RESOURCES
-
Question mark user image: "http://www.clker.com/cliparts/F/g/8/N/k/X/black-question-mark-square-icon-md.png"
-
Shuffle function:
function shuffle(array) {
var counter = array.length;
while (counter > 0) {
var index = Math.floor(Math.random() * counter);
counter--;
var temp = array[counter];
array[counter] = array[index];
array[index] = temp;
}
return array;
}