Home  >  Article  >  Web Front-end  >  Application code of js arguments.callee_javascript skills

Application code of js arguments.callee_javascript skills

WBOY
WBOYOriginal
2016-05-16 18:53:061193browse
Copy code The code is as follows:

function f(x){
alert(x);
return arguments.callee;
}
f(0)(1)(2)(3)(4)(5)(6)(7)(8)(9);

Copy code The code is as follows:

function f(){
var a =arguments,i,l=a.length;
for(i=0; ialert(a[i]);
}
return arguments.callee;
}
f(0)(1,2)(3,4,5)(6,7,8,9);

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn