Skip to content

Instantly share code, notes, and snippets.

@stagas
Created October 18, 2010 15:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save stagas/632400 to your computer and use it in GitHub Desktop.
Save stagas/632400 to your computer and use it in GitHub Desktop.
while (true) {
var o = Math.floor(Math.random() * 100)
var oo = Math.floor(Math.random() * 100000)
if (typeof this[o] === 'undefined') this[o] = {}
if (typeof this[o][oo] === 'undefined') this[o][oo] = {}
var k = Math.random() * 100000000000
this[o][oo][k] = 'valueeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment