当前位置: 首页 > Web前端 > JavaScript

选择(027)-以下代码的输出是什么?

时间:2023-03-27 01:08:10 JavaScript

functiongetPersonInfo(one,two,three){console.log(one)console.log(two)console.log(three)}constperson='Lydia'constage=21getPersonInfo`${person}是${age}岁`A:"Lydia"21["","is","岁"]B:["","is","岁"]"Lydia"21C:"Lydia"["","是","岁"]21参考答案