Created
January 29, 2012 23:46
-
-
Save specialunderwear/1701400 to your computer and use it in GitHub Desktop.
next function
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
> var next = function(input) { | |
> return input + 1; | |
> } | |
> var three = new next; | |
> three; | |
[Function] | |
> three(2); | |
3 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment