function add(x) {_______}; Alert(add(2)(3)(4)); //결과가 9가 되도록 빈칸을 채워주세요
해결책 1,
//貘大
function add(x) {
var c = 0;
return function(x) {
c = c x ;args.callee.toString = function(){
return c;
returnargs.callee; >}(x);
};
alert(add(2)(3)(4))
해결책 2,
//Sangui
function add(x) {
return function(y ){
return 함수(z ){
return x y z
}
}
alert(add(2)(3)(4));
해결책 3,
코드 복사
if(!isFinite(add.i)){
add.i = a
}else {
add.i = a;
}
add.valueOf = add .toString = function(){
return add.i
}
return add;
}
alert(add(2)( 3)(4))
사실 위 질문은 카레 테스트입니다. 자세한 내용은 제 다른 블로그 포스팅을 참고해주세요.
다른 해결책이 있다면 조언 부탁드립니다!