aboutsummaryrefslogtreecommitdiff
path: root/files/ko/web/javascript
diff options
context:
space:
mode:
authorjdm1219 <46333789+jdm1219@users.noreply.github.com>2021-07-08 10:59:06 +0900
committerGitHub <noreply@github.com>2021-07-08 10:59:06 +0900
commit26fbbf4807a7be90cc5e8df56812e21694d4a106 (patch)
tree211def010673c1cfa39d6fbc636c5cfff7f531d1 /files/ko/web/javascript
parent0d13feed6a627047449d99af02d1fb55bbfad1a9 (diff)
downloadtranslated-content-26fbbf4807a7be90cc5e8df56812e21694d4a106.tar.gz
translated-content-26fbbf4807a7be90cc5e8df56812e21694d4a106.tar.bz2
translated-content-26fbbf4807a7be90cc5e8df56812e21694d4a106.zip
[ko] fix: Fix typo (#1409)
Diffstat (limited to 'files/ko/web/javascript')
-rw-r--r--files/ko/web/javascript/reference/global_objects/string/index.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/files/ko/web/javascript/reference/global_objects/string/index.html b/files/ko/web/javascript/reference/global_objects/string/index.html
index 68e9b021e5..48217dee18 100644
--- a/files/ko/web/javascript/reference/global_objects/string/index.html
+++ b/files/ko/web/javascript/reference/global_objects/string/index.html
@@ -187,7 +187,7 @@ console.log(eval(s2)); // returns the string "2 + 2"
<p>이러한 이유로, 비록 코드 상에서 원형 문자열을 사용하는 대신에 <code>String</code> 오브젝트를 사용하게 되면 코드가 손상될 수 있지만, 일반적인 개발자는 차이를 걱정할 필요는 없습니다.</p>
-<p><code>String</code><span style="line-height: inherit;"> 오프젝트는 언제든지 </span>{{jsxref("String.prototype.valueOf()", "valueOf()")}} <span style="line-height: inherit;"> 메서드로 원형에 대응하도록 전환할 수 있습니다.</span></p>
+<p><code>String</code><span style="line-height: inherit;"> 오브젝트는 언제든지 </span>{{jsxref("String.prototype.valueOf()", "valueOf()")}} <span style="line-height: inherit;"> 메서드로 원형에 대응하도록 전환할 수 있습니다.</span></p>
<pre class="brush: js">console.log(eval(s2.valueOf())); // returns the number 4
</pre>