17 lines
238 B
Markdown
17 lines
238 B
Markdown
|
|
```js run
|
|
function ask(question, yes, no) {
|
|
if (confirm(question)) yes()
|
|
else no();
|
|
}
|
|
|
|
ask(
|
|
"Do you agree?",
|
|
*!*
|
|
() => alert("You agreed."),
|
|
() => alert("You canceled the execution.")
|
|
*/!*
|
|
);
|
|
```
|
|
|
|
Looks short and clean, right?
|