Add semicolon

This commit is contained in:
Shreenanda 2021-03-15 06:48:59 +05:30 committed by GitHub
parent b96642dd20
commit 51b2becd64
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,7 +1,7 @@
```js run ```js run
function ask(question, yes, no) { function ask(question, yes, no) {
if (confirm(question)) yes() if (confirm(question)) yes();
else no(); else no();
} }