Skip to content

Commit 51b2bec

Browse files
authored
Add semicolon
1 parent b96642d commit 51b2bec

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/solution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
```js run
33
function ask(question, yes, no) {
4-
if (confirm(question)) yes()
4+
if (confirm(question)) yes();
55
else no();
66
}
77

0 commit comments

Comments
 (0)