Skip to content

Commit 0599cbf

Browse files
committed
adding demo code from variables module
1 parent 9f8db23 commit 0599cbf

1 file changed

Lines changed: 16 additions & 0 deletions

File tree

05-variables/demo.js

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
var hello = "Hello";
2+
3+
console.log(hello);
4+
hello = "Hello World";
5+
console.log(hello);
6+
7+
if (true) {
8+
let world = "Hello World";
9+
console.log(world);
10+
}
11+
// console.log(world);
12+
13+
const aaron = "Aaron";
14+
console.log(aaron);
15+
16+
// aaron = "Aaron Powell"

0 commit comments

Comments
 (0)