http://penddraig.co.uk/online-tests/the-insanity-test/
The Insanity Test
function makeScores(n) { this.length = n; for (var i = 1; i <= n; i++) { this[i] = 0 } return this } function initVars() { scores= new makeScores(176); } function resetScores(){ for (var i = 1; …
penddraig.co.uk