私が以下を持っている場合:
function hello(name, callback) {
var hello1 = "Hello There " + name;
callback(hello1);
}
hello("John", function(hello1) {
alert(hello1);
});
アラート ボックスに「Hello There John」が表示されます。コールバックに 2 つの変数があるように、hello2 変数を使用できるようにするにはどうすればよいですか? 私は本質的に次のようなことをしたい:
function hello(name, callback) {
var hello1 = "Hello There " + name;
var hello2 = "Greetings " + name;
callback(hello1, hello2);
}
hello("John", function(hello1, hello2) {
alert(hello1 + " " + hello2);
});