en.javascript.info/1-js/02-first-steps/16-arrow-functions-basics/1-rewrite-arrow/solution.md
2019-11-06 14:05:43 +03:00

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?