代码查询;首先这是一个javascript函数

function test(name,birth_year,current_year){

 const age=current_year-birth_year;

 const response=name+"is"+age;

return response;

}

teat("alice",1836,1928)

function test(name,birth_year,current_year){
 const age=current_year-birth_year;
 const response=name+“is”+age;
 return response;
}
test(“alice”,1836,1928)

 

然后呢,你的问题是......