function updateData(){
var b = "hello world";
return b;
}
function c(){
return updateData();
}
console.log(c());
函数调用
最新推荐文章于 2024-07-07 17:51:26 发布
function updateData(){
var b = "hello world";
return b;
}
function c(){
return updateData();
}
console.log(c());