Skip to content

Commit 4f84ab5

Browse files
author
Uyen Nguyen
committed
delete the english portion in lydiahallie#145
1 parent 5bcb810 commit 4f84ab5

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

vi-VI/README-vi.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4730,8 +4730,6 @@ console.log(count)
47304730
47314731
#### Answer: C
47324732
4733-
The `if` condition within the `forEach` loop checks whether the value of `num` is truthy or falsy. Since the first number in the `nums` array is `0`, a falsy value, the `if` statement's code block won't be executed. `count` only gets incremented for the other 3 numbers in the `nums` array, `1`, `2` and `3`. Since `count` gets incremented by `1` 3 times, the value of `count` is `3`.
4734-
47354733
Câu lệnh `if` trong vòng lập `forEach` kiểm tra giá trị của `num` là truthy hay falsy. Vì số đầu tiên trong mảng `nums``0`, giá trị falsy, code trong câu lệnh `if` sẽ không chạy. `count` chỉ tăng giá trị đối với 3 số còn lại trong mảng `nums`, `1`, `2``3`. Vì giá trị của `count` tăng thêm `1` trong 3 lần, giá trị của `count` sẽ là `3`.
47364734
47374735
</p>

0 commit comments

Comments
 (0)