We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 210d78b commit d816d80Copy full SHA for d816d80
1-js/02-first-steps/15-function-basics/article.md
@@ -345,7 +345,7 @@ alert( doNothing() === undefined ); // true
345
return
346
(some + long + expression + or + whatever * f(a) + f(b))
347
```
348
-자바스크립트는 return문 끝에 세미콜론을 자동으로 넣기 때문에 이렇게 `return`문을 작성하면 안 됩니다. 위와 코드는 아래 코드처럼 동작합니다.
+자바스크립트는 return문 끝에 세미콜론을 자동으로 넣기 때문에 이렇게 `return`문을 작성하면 안 됩니다. 위 코드는 아래 코드처럼 동작합니다.
349
350
```js
351
return*!*;*/!*
0 commit comments