17 lines
320 B
Markdown
17 lines
320 B
Markdown
|
|
# Rewrite with arrow functions
|
|
|
|
Replace Function Expressions with arrow functions in the code below:
|
|
|
|
```js run
|
|
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."); }
|
|
);
|
|
```
|