Skip to content

Instantly share code, notes, and snippets.

@masahitojp
Created November 25, 2011 01:44
Show Gist options
  • Save masahitojp/1392628 to your computer and use it in GitHub Desktop.
Save masahitojp/1392628 to your computer and use it in GitHub Desktop.
arguments.calleeの代わりに名前付き関数を使う
(function test(n){
"use strict";
if(n==0){
return 1;
}else{
// return arguments.callee(n-1); <= strictモードではエラー
return n* test(n-1); // 名前付き関数を使う。
}
})(2);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment