下面代码执行后的输出结果为()?<script>functio...
发布于 2022-03-03 14:01:50
下面代码执行后的输出结果为( )?
<script>
function funcA(x){
var temp = 4
function funcB(y){
document.write( ++x + y + (temp--))
}
funcB(5)
}
funcA(6)
<script>
function funcA(x){
var temp = 4
function funcB(y){
document.write( ++x + y + (temp--))
}
funcB(5)
}
funcA(6)
登录后免费查看答案
关注者
0
被浏览
36