Home >Web Front-end >JS Tutorial >Sequential test code about recursive operations_javascript skills

Sequential test code about recursive operations_javascript skills

WBOY
WBOYOriginal
2016-05-16 17:59:011089browse
Copy code The code is as follows:

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