- [Creating a time object](#creating-a-time-object)
- [Tạo một đối tượng thời gian](#creating-a-time-object)
- [Getting full year](#getting-full-year)
- [Lấy giá trị năm](#getting-full-year)
- [Getting month](#getting-month)
- [Lấy giá trị tháng](#getting-month)
- [Getting date](#getting-date)
- [Lấy giá trị ngày](#getting-date)
- [Getting day](#getting-day)
- [Lấy giá trị thứ trong tuần](#getting-day)
- [Getting hours](#getting-hours)
- [Getting hours](#getting-hours)
- [Getting minutes](#getting-minutes)
- [Getting minutes](#getting-minutes)
- [Getting seconds](#getting-seconds)
- [Getting seconds](#getting-seconds)
- [Getting time](#getting-time)
- [Getting time](#getting-time)
- [💻 Day 3: Exercises](#-day-3-exercises)
- [💻 Ngày 3: Bài tập](#-day-3-exercises)
- [Exercises: Level 1](#exercises-level-1)
- [Bài tập: Cấp độ 1](#exercises-level-1)
- [Exercises: Level 2](#exercises-level-2)
- [Bài tập: Cấp độ 2](#exercises-level-2)
- [Exercises: Level 3](#exercises-level-3)
- [Bài tập: Cấp độ 3](#exercises-level-3)
# 📔 Day 3
# 📔 Day 3
## Booleans
## Booleans
A boolean data type represents one of the two values:_true_ or _false_. Boolean value is either true or false. The use of these data types will be clear when you start the comparison operator. Any comparisons return a boolean value which is either true or false.
**Example: Boolean Values**
Dữ liệu boolean thể hiện một trong hai giá trị: True (đúng) hoặc False (sai). Giá trị của boolean sẽ là đúng (True) hoặc sai (False). Việc sử dụng các kiểu dữ liệu này sẽ rõ ràng khi bạn sử dụng toán tử so sánh. Bất kì phương thức so sánh nào đều sẽ trả về giá trị boolean đúng hoặc sai.
**Ví dụ: Giá Trị Boolean**
```js
```js
let isLightOn = true
let isLightOn = true
@ -68,9 +69,9 @@ let truValue = 4 > 3 // true
let falseValue = 4 <3//false
let falseValue = 4 <3//false
```
```
We agreed that boolean values are either true or false.
Chúng ta có thể thấy được boolean chỉ có giá trị đúng hoặc sai.
### Truthy values
### Giá trị đúng
- All numbers(positive and negative) are truthy except zero
- All numbers(positive and negative) are truthy except zero
- All strings are truthy except an empty string ('')
- All strings are truthy except an empty string ('')