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 d179ae1 commit 6cfe10bCopy full SHA for 6cfe10b
1-js/05-data-types/03-string/article.md
@@ -286,7 +286,7 @@ while ((pos = str.indexOf(target, pos + 1)) != -1) {
286
반환되는 부분 문자열 위치는 문자열 끝이 기준입니다.
287
```
288
289
-`if`문의 조건식에 `indexOf`를 쓸 때 주의할 점이 하나 있습니다. 아래와 같이 코드들 작성하면 원하는 결과를 얻을 수 없습니다.
+`if`문의 조건식에 `indexOf`를 쓸 때 주의할 점이 하나 있습니다. 아래와 같이 코드를 작성하면 원하는 결과를 얻을 수 없습니다.
290
291
```js run
292
let str = "Widget with id";
0 commit comments