Skip to content

Commit 6e360e4

Browse files
committed
remove semiclone
1 parent 8c99d4a commit 6e360e4

File tree

1 file changed

+8
-8
lines changed
  • 1-js/02-first-steps/08-comparison/1-comparison-questions

1 file changed

+8
-8
lines changed
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
গুরুত্ব: 5
1+
importance: 5
22

33
---
44

@@ -7,11 +7,11 @@
77
নিচের লাইন গুলোর ফলাফল কী হবে?
88

99
```js no-beautify
10-
5 > 4;
11-
"apple" > "pineapple";
12-
"2" > "12";
13-
undefined == null;
14-
undefined === null;
15-
null == "\n0\n";
16-
null === +"\n0\n";
10+
5 > 4
11+
"apple" > "pineapple"
12+
"2" > "12"
13+
undefined == null
14+
undefined === null
15+
null == "\n0\n"
16+
null === +"\n0\n"
1717
```

0 commit comments

Comments
 (0)