Created
May 6, 2014 00:17
-
-
Save mathildathompson/a0ab9dfd7799136b1af9 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$(document).ready(function(){ | |
var alphabet = _.range(65, 65 + 26).map(function(i){ | |
return String.fromCharCode(i) | |
}); | |
var numbers = _.range(100, 1000); | |
var robotFactory = function(){ | |
var robot = { | |
instructionCount: 0, | |
assignName: function(){ | |
this.instructionCount++; | |
if(this.name){ | |
return this; | |
} | |
var letterCode = _.sample(alphabet, 2).join(''); | |
var numCode = _.sample(numbers); | |
this.name = letterCode + numCode; | |
return this; | |
}, | |
reset: function(){ | |
this.instructionCount++; | |
this.name = "" | |
return this; | |
} | |
} | |
return robot; | |
} | |
var robot = robotFactory() | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment