diff options
author | 3indblown Leaf <69508345+kraccoon-dev@users.noreply.github.com> | 2022-02-14 02:48:37 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-14 02:48:37 +0900 |
commit | 943495c4641a66ee1fc5c83557ffe98909f23344 (patch) | |
tree | 9ce926eec292bb761a6d81f2c1a88c406f5101ff /files/ko | |
parent | 1c5272edfa264739fa046d3ef31a37801dc753e5 (diff) | |
download | translated-content-943495c4641a66ee1fc5c83557ffe98909f23344.tar.gz translated-content-943495c4641a66ee1fc5c83557ffe98909f23344.tar.bz2 translated-content-943495c4641a66ee1fc5c83557ffe98909f23344.zip |
fix: typo error (#3848)
* fix: title err
* fix: typo error
* fix: typo error
Diffstat (limited to 'files/ko')
-rw-r--r-- | files/ko/learn/javascript/first_steps/what_went_wrong/index.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/files/ko/learn/javascript/first_steps/what_went_wrong/index.html b/files/ko/learn/javascript/first_steps/what_went_wrong/index.html index 44030c4057..92534d03f0 100644 --- a/files/ko/learn/javascript/first_steps/what_went_wrong/index.html +++ b/files/ko/learn/javascript/first_steps/what_went_wrong/index.html @@ -100,7 +100,7 @@ translation_of: Learn/JavaScript/First_steps/What_went_wrong <pre class="brush: js"><p class="lowOrHi"></p></pre> </li> <li>따라서 여기에 점(.) 으로 시작되는 클래스 선택자가 필요한 것이다 . 하지만 48번줄의 querySelector() 메소드에서는 바로 이 '점(.)' 이 없다. <code>lowOrHi</code>를 <code>.lowOrHi</code> 로 바꾸어 문제를 해결할 수 있다.</li> - <li>저장하고 새로고침하면, <code>console.log() </code>에서 우리가 원하는 <p> 요소를 반환할 것이다. 자, 이제 다른 에러가 해결되었다. <code>console.log()</code>를 지금 제거해도 되고 난중을 위해 나둬도 되니 알아서 하자.</li> + <li>저장하고 새로고침하면, <code>console.log() </code>에서 우리가 원하는 <p> 요소를 반환할 것이다. 자, 이제 다른 에러가 해결되었다. <code>console.log()</code>를 지금 제거해도 되고 나중을 위해 놔둬도 되니 알아서 하자.</li> </ol> <div class="note"> @@ -213,7 +213,7 @@ translation_of: Learn/JavaScript/First_steps/What_went_wrong <h3 id="SyntaxError_expected_expression_got_string_or_SyntaxError_unterminated_string_literal">SyntaxError: expected expression, got '<em>string</em>' or SyntaxError: unterminated string literal</h3> -<p>이는 보통 문자열을 열거나 닫는 따옴표를 생략한 경우 에러가 발생한다.위의 첫번재 에러를 살펴보면, <em>string은</em> 문자열이 시작하는 부분에서 따옴표 대신 브라우저가 검색한 예상치 못한 문자열로 대체된다. 두번째 에러는 따옴표로 문자열이 끝나지 못했기 때문에 발생했다.</p> +<p>이는 보통 문자열을 열거나 닫는 따옴표를 생략한 경우 에러가 발생한다.위의 첫 번째 에러를 살펴보면, <em>string은</em> 문자열이 시작하는 부분에서 따옴표 대신 브라우저가 검색한 예상치 못한 문자열로 대체된다. 두번째 에러는 따옴표로 문자열이 끝나지 못했기 때문에 발생했다.</p> <p>모든 경우의 에러를 보았을 때, 지금까지 살펴본 예제에 어떻게 씨름했는지 생각해보자. 에러가 발생하면 , 발생된 줄 번호를 보고, 그 줄로 이동해 무엇이 잘못되었는지 살펴보는것이다. 이 오류가 반드시 해당 라인에 있는 것은 아니며, 위에서 언급되어진 문제로 인해 오류가 발생하지 않을 수도 있다는 점을 명심하자!</p> |