Skip to content

Commit 60fda59

Browse files
add expression
1 parent ee379c2 commit 60fda59

File tree

2 files changed

+11
-0
lines changed

2 files changed

+11
-0
lines changed

ECMAScript/A02-Expression/math.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
let a=1;
2+
let b=2;
3+
let c=a+b;
4+
console.log(c);
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/**
2+
* == ===
3+
*/
4+
let a=1;
5+
let b=2;
6+
console.log(a==b);
7+
console.log(a===b);

0 commit comments

Comments
 (0)