diff options
author | Ryan Johnson <rjohnson@mozilla.com> | 2021-04-29 16:16:42 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-29 16:16:42 -0700 |
commit | 95aca4b4d8fa62815d4bd412fff1a364f842814a (patch) | |
tree | 5e57661720fe9058d5c7db637e764800b50f9060 /files/vi/glossary/falsy | |
parent | ee3b1c87e3c8e72ca130943eed260ad642246581 (diff) | |
download | translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.gz translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.tar.bz2 translated-content-95aca4b4d8fa62815d4bd412fff1a364f842814a.zip |
remove retired locales (#699)
Diffstat (limited to 'files/vi/glossary/falsy')
-rw-r--r-- | files/vi/glossary/falsy/index.html | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/files/vi/glossary/falsy/index.html b/files/vi/glossary/falsy/index.html deleted file mode 100644 index 7b39f3e98b..0000000000 --- a/files/vi/glossary/falsy/index.html +++ /dev/null @@ -1,33 +0,0 @@ ---- -title: Falsy -slug: Glossary/Falsy -translation_of: Glossary/Falsy -original_slug: Tu-dien-thuat-ngu/Falsy ---- -<p id="Summary">Giá trị <strong>falsy</strong> là giá trị được hiểu là <em>false</em> trong ngữ cảnh {{Glossary("Boolean")}}.</p> - -<p>{{Glossary("JavaScript")}} sử dụng {{Glossary("Type_Conversion", "Type Conversion")}} để ép kiểu giá trị bất kì thành Boolean khi cần thiết, ví dụ trong mệnh đề điều kiện ({{Glossary("Conditional", "conditionals")}}) và vòng lặp ({{Glossary("Loop", "loops")}}).</p> - -<h2 id="Ví_dụ">Ví dụ</h2> - -<p>Sau đây là ví dụ về các giá trị <em>falsy</em> (sẽ được hiểu là 'false' dẫn đến không thực hiện đoạn code của <code>if</code> ):</p> - -<pre class="brush: js">if (false) -if (null) -if (undefined) -if (0) -if (NaN) -if ('') -if ("") -if (document.all) [1]</pre> - -<p>[1] <code>document.all</code> trước đây được sử dụng trong việc nhận biết trình duyệt và tài liệu <a href="http://www.whatwg.org/specs/web-apps/current-work/multipage/obsolete.html#dom-document-all">HTML specification defines a willful violation</a> của chuẩn ECMAScript này để tương thích với code cũ (<code>if (document.all) { // Internet Explorer code here }</code> hoặc sử dụng <code>document.all</code> mà không kiểm tra trước về sự tồn tại của nó: <code>document.all.foo</code>).</p> - -<p>Đôi khi từ này được viết là <strong>falsey</strong>.</p> - -<h2 id="Tìm_hiểu_thêm">Tìm hiểu thêm</h2> - -<ul> - <li>{{Glossary("Truthy")}}</li> - <li>{{Glossary("Boolean")}}</li> -</ul> |