Skip to content

Commit b96642d

Browse files
authored
Add semicolon
1 parent e01998b commit b96642d

File tree

1 file changed

+1
-1
lines changed
  • 1-js/02-first-steps/17-arrow-functions-basics/1-rewrite-arrow

1 file changed

+1
-1
lines changed

1-js/02-first-steps/17-arrow-functions-basics/1-rewrite-arrow/task.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Replace Function Expressions with arrow functions in the code below:
55

66
```js run
77
function ask(question, yes, no) {
8-
if (confirm(question)) yes()
8+
if (confirm(question)) yes();
99
else no();
1010
}
1111

0 commit comments

Comments
 (0)