Skip to content

Commit 4536043

Browse files
authored
comment spacing
1 parent 57dc968 commit 4536043

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

challenges/primitives.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -197,8 +197,8 @@ num1 > 0 || num2 < 0 // true
197197
```js
198198
const num1 = 10, num2 = 20;
199199

200-
true && true; // true
201-
true && false; // false
200+
true && true; // true
201+
true && false; // false
202202
true && num1; // 10
203203
num1 && num2; // 20
204204
"text" && (num1 + num2) // 30
@@ -437,7 +437,6 @@ str.split(" ").map(val => val.split("").reverse().join("")).join(" ");
437437
438438
<br />
439439
440-
441440
#### Q15
442441
### Write a program to reverse a given integer number
443442

0 commit comments

Comments
 (0)