aboutsummaryrefslogtreecommitdiff
path: root/files/ko/glossary/falsy
diff options
context:
space:
mode:
authorYeji Choi <61399588+yechoi42@users.noreply.github.com>2021-07-18 22:58:53 +0900
committerGitHub <noreply@github.com>2021-07-18 22:58:53 +0900
commit619211e9ba8a68c9d5de346dfc73fa0686c9148d (patch)
tree8c979eccdb1ba64e1b314ea2ab542ae3e6262c2e /files/ko/glossary/falsy
parent53fb7c6f1f2f22f558b4a5b9af867767ecfeddfd (diff)
downloadtranslated-content-619211e9ba8a68c9d5de346dfc73fa0686c9148d.tar.gz
translated-content-619211e9ba8a68c9d5de346dfc73fa0686c9148d.tar.bz2
translated-content-619211e9ba8a68c9d5de346dfc73fa0686c9148d.zip
fix: delete wiki.mozilla.org from ko files (#1567)
* fix: delete wiki.mozilla.org from ko/learn files * fix: delete wiki.mozilla.org from ko/glossary files * fix: remove wiki * fix: remove python script file 잘못올렸습니다.. ㅠ * Update files/ko/web/html/attributes/index.html Co-authored-by: hochan222 <hochan049@gmail.com>
Diffstat (limited to 'files/ko/glossary/falsy')
-rw-r--r--files/ko/glossary/falsy/index.html18
1 files changed, 9 insertions, 9 deletions
diff --git a/files/ko/glossary/falsy/index.html b/files/ko/glossary/falsy/index.html
index 5b9f046a7a..250966fceb 100644
--- a/files/ko/glossary/falsy/index.html
+++ b/files/ko/glossary/falsy/index.html
@@ -18,43 +18,43 @@ translation_of: Glossary/Falsy
<tbody>
<tr>
<td><code>false</code></td>
- <td>키워드 <a href="https://wiki.developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Lexical_grammar#구형_표준의_확장_예약_키워드">false</a></td>
+ <td>키워드 <a href="/ko/docs/Web/JavaScript/Reference/Lexical_grammar#구형_표준의_확장_예약_키워드">false</a></td>
</tr>
<tr>
<td><code>0</code></td>
- <td>숫자 <a href="https://wiki.developer.mozilla.org/ko/docs/Web/JavaScript/Data_structures#Number_타입">zero</a></td>
+ <td>숫자 <a href="/ko/docs/Web/JavaScript/Data_structures#Number_타입">zero</a></td>
</tr>
<tr>
<td><code>-0</code></td>
- <td>음수 <a href="https://wiki.developer.mozilla.org/ko/docs/Web/JavaScript/Data_structures#Number_타입">zero</a></td>
+ <td>음수 <a href="/ko/docs/Web/JavaScript/Data_structures#Number_타입">zero</a></td>
</tr>
<tr>
<td><code>0n</code></td>
- <td><a href="https://wiki.developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/BigInt">BigInt</a>. 불리언으로 사용될 경우, 숫자와 같은 규칙을 따름. <code>0n</code>은 거짓 같은 값.</td>
+ <td><a href="/ko/docs/Web/JavaScript/Reference/Global_Objects/BigInt">BigInt</a>. 불리언으로 사용될 경우, 숫자와 같은 규칙을 따름. <code>0n</code>은 거짓 같은 값.</td>
</tr>
<tr>
<td><code>""</code></td>
<td>
- <p>빈 <a href="https://wiki.developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></p>
+ <p>빈 <a href="/ko/docs/Web/JavaScript/Reference/Global_Objects/String">string</a></p>
</td>
</tr>
<tr>
<td>{{Glossary("null")}}</td>
- <td><a href="https://wiki.developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/null">null</a> - 아무런 값도 없음</td>
+ <td><a href="/ko/docs/Web/JavaScript/Reference/Global_Objects/null">null</a> - 아무런 값도 없음</td>
</tr>
<tr>
<td>{{Glossary("undefined")}}</td>
- <td><a href="https://wiki.developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/undefined">undefined</a> - 원시값</td>
+ <td><a href="/ko/docs/Web/JavaScript/Reference/Global_Objects/undefined">undefined</a> - 원시값</td>
</tr>
<tr>
<td>{{Glossary("NaN")}}</td>
- <td><a href="https://wiki.developer.mozilla.org/ko/docs/Web/JavaScript/Reference/Global_Objects/NaN">NaN </a>- 숫자가 아님</td>
+ <td><a href="/ko/docs/Web/JavaScript/Reference/Global_Objects/NaN">NaN </a>- 숫자가 아님</td>
</tr>
</tbody>
</table>
<div class="note">
-<p>오브젝트는  <a href="https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot">[[IsHTMLDDA]] internal slot</a> 을 가지고 있어야 거짓같은 값이 됩니다. 이 슬롯은 <a href="https://wiki.developer.mozilla.org/ko/docs/Web/API/Document/all"><code>document.all</code></a> 에만 존재하며 자바스크립트로 설정될 수 없습니다.</p>
+<p>오브젝트는  <a href="https://tc39.es/ecma262/#sec-IsHTMLDDA-internal-slot">[[IsHTMLDDA]] internal slot</a> 을 가지고 있어야 거짓같은 값이 됩니다. 이 슬롯은 <a href="/ko/docs/Web/API/Document/all"><code>document.all</code></a> 에만 존재하며 자바스크립트로 설정될 수 없습니다.</p>
</div>
<h2 id="예제">예제</h2>