Last active
January 3, 2016 13:39
-
-
Save zythum/8471205 to your computer and use it in GitHub Desktop.
Revisions
-
zythum revised this gist
Jan 17, 2014 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -4,7 +4,7 @@ function where_is_my_func () { 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) -
zythum created this gist
Jan 17, 2014 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,11 @@ 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(arguments.callee.caller, [b, b[0] += a][0]) } sun(1, 2, 3, 4, 5, 6, 7, 8, 9) console.log(where_is_my_func)