"use strict";
function say(message,country) {
return `${message} ${this.fullName}, ${country}はどうですか? !`;
}
const person = {
fullName: "Tsuyuさん"
};
console.log(say.apply(person, ["こんにちは","Malaysia"]));
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.