I hereby claim:
- I am superlinkx on github.
- I am superlinkx (https://keybase.io/superlinkx) on keybase.
- I have a public key ASA5Us74YMnytsCaEGAq-LDfVYoOin-B8-7tG_1js-zWGgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
/* | |
* Add a shuffle function to Array object prototype | |
* Usage : | |
* var tmpArray = ["a", "b", "c", "d", "e"]; | |
* tmpArray.shuffle(); | |
*/ | |
Array.prototype.shuffle = function (){ | |
var i = this.length, j, temp; | |
if ( i == 0 ) return; | |
while ( --i ) { |
<!DOCTYPE html> | |
<html> | |
<head> | |
<style> | |
#console { | |
width: 800px; | |
height: 400px; | |
background: #575757; | |
color: white; | |
margin: 30px auto; |