window.onload=function(){ pd(11);}
function pd(number)
{
if(number>5)
{number--;
pd(number);
alert("no" );
}
else
{
alert("yes");
}
}
The result is yes, no, no.. ....
Recursive nesting finally returns to execute the content in the if statement
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