Skip to content

Commit 546818e

Browse files
[ADD] add sentence
1 parent 60fda59 commit 546818e

File tree

2 files changed

+8
-0
lines changed

2 files changed

+8
-0
lines changed
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
let ifCondition=true;
2+
if(ifCondition===true){
3+
console.log("ifCondition is true");
4+
}

ECMAScript/A03-Sentence/loop.js

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
let whileVariable=0;
2+
while(whileVariable<3){
3+
console.log("whileVariable: "+whileVariable++);
4+
}

0 commit comments

Comments
 (0)