Last active
January 3, 2016 13:39
-
-
Save zythum/8471205 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
function where_is_my_func () { | |
return 'I am here' | |
} | |
function sun (a, b) { | |
var where_is_my_func = 'your are not here' | |
b = [].slice.call(arguments, 1) | |
return !b.length ? a : arguments.callee.apply(this, [b, b[0] += a][0]) | |
} | |
sun(1, 2, 3, 4, 5, 6, 7, 8, 9) | |
console.log(where_is_my_func) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment