答案解析
function getPersonInfo(one, two, three) {
console.log(one);
console.log(two);
console.log(three);
}
const person = "开卷有益君";
const age = 21;
getPersonInfo`${person} is ${age} years old`;