From 95aca4b4d8fa62815d4bd412fff1a364f842814a Mon Sep 17 00:00:00 2001 From: Ryan Johnson Date: Thu, 29 Apr 2021 16:16:42 -0700 Subject: remove retired locales (#699) --- files/vi/glossary/falsy/index.html | 33 --------------------------------- 1 file changed, 33 deletions(-) delete mode 100644 files/vi/glossary/falsy/index.html (limited to 'files/vi/glossary/falsy') 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 ---- -

Giá trị falsy là giá trị được hiểu là false trong ngữ cảnh {{Glossary("Boolean")}}.

- -

{{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")}}).

- -

Ví dụ

- -

Sau đây là ví dụ về các giá trị falsy (sẽ được hiểu là 'false' dẫn đến không thực hiện đoạn code của if ):

- -
if (false)
-if (null)
-if (undefined)
-if (0)
-if (NaN)
-if ('')
-if ("")
-if (document.all) [1]
- -

[1] document.all trước đây được sử dụng trong việc nhận biết trình duyệt và tài liệu HTML specification defines a willful violation của chuẩn ECMAScript này để tương thích với code cũ (if (document.all) { // Internet Explorer code here } hoặc sử dụng document.all mà không kiểm tra trước về sự tồn tại của nó: document.all.foo).

- -

Đôi khi từ này được viết là falsey.

- -

Tìm hiểu thêm

- - -- cgit v1.2.3-54-g00ecf