ã¢ãã¼é¢æ°ã使ã£ãæ¸ãæã
次ã®ã³ã¼ãã§ã颿°å¼ãã¢ãã¼é¢æ°ã«ç½®ãæãã¦ãã ããã:
function ask(question, yes, no) {
if (confirm(question)) yes()
else no();
}
ask(
"Do you agree?",
function() { alert("You agreed."); },
function() { alert("You canceled the execution."); }
);
function ask(question, yes, no) {
if (confirm(question)) yes()
else no();
}
ask(
"Do you agree?",
() => alert("You agreed."),
() => alert("You canceled the execution.")
);
çãã¦ãã¬ã¤ã«è¦ãã¾ããã