diff options
Diffstat (limited to 'files/vi/tu-dien-thuat-ngu/boolean/index.html')
-rw-r--r-- | files/vi/tu-dien-thuat-ngu/boolean/index.html | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/files/vi/tu-dien-thuat-ngu/boolean/index.html b/files/vi/tu-dien-thuat-ngu/boolean/index.html new file mode 100644 index 0000000000..9d227fa486 --- /dev/null +++ b/files/vi/tu-dien-thuat-ngu/boolean/index.html @@ -0,0 +1,53 @@ +--- +title: Boolean +slug: Tu-dien-thuat-ngu/Boolean +tags: + - Boolean + - JavaScript + - Loại dữ liệu + - Ngôn ngữ lập trình + - Thuật ngữ +translation_of: Glossary/Boolean +--- +<p>Trong khoa học máy tính, Boolean (phiên âm /bu-li-ờn/) là loại dữ liệu logic chỉ có giá trị <code>true</code>/đúng hoặc <code>false</code>/sai. Ví dụ, trong JavaScript, điều kiện Boolean thường sử dụng để quyết định đoạn mã nào được thực thi (như trong {{jsxref("Statements/if...else", "lệnh if")}}) hay lặp lại (trong {{jsxref("Statements/for", "vòng lặp for")}}).</p> + +<p>Dưới đây là vài đoạn mã JavaScript giả (không hẳng là mã chạy được) để minh họa khái niệm này.</p> + +<pre class="brush: js">/* Lệnh if của JavaScript */ +if (điều kiện <em>boolean</em>) { + // Mã được thực thi nếu điều kiện là đúng +} + +if (điều kiện <em>boolean</em>) { + console.log("điều kiện <em>boolean</em> resolved to true"); +} else { + console.log("boolean conditional resolved to false"); +} + + +/* JavaScript for loop */ +for (<em>biến điều khiển</em>; điều kiện <em>boolean</em>; <em>bộ đếm</em>) { + // Mã được thực thi nếu điều kiện là đúng +} + +for (var i=0; i < 4; i++) { + console.log("Tôi chỉ được in ra khi điều kiện <em>boolean là đúng/true</em>"); +} +</pre> + +<p>Giá trị Boolean được đặt tên theo nhà toán học người Anh {{interwiki("wikipedia", "George Boole")}}, ông tổ ngành toán học logic. </p> + +<h2 id="Tìm_hiểu_thêm">Tìm hiểu thêm</h2> + +<h3 id="Kiến_thức_phổ_thông">Kiến thức phổ thông</h3> + +<ul> + <li>{{Interwiki("wikipedia", "Boolean data type", "Boolean")}} trên Wikipedia</li> +</ul> + +<h3 id="Tài_liệu_tham_khảo_kỹ_thuật">Tài liệu tham khảo kỹ thuật</h3> + +<ul> + <li>Đối tượng global JavaScript: {{jsxref("Boolean")}}</li> + <li><a href="/en-US/docs/Web/JavaScript/Data_structures">Loại dữ liệu và cấu trúc dữ liệu trong JavaScript</a></li> +</ul> |