Skip to content
This repository was archived by the owner on May 14, 2024. It is now read-only.

Commit 474a00a

Browse files
authored
Update step3.js
1 parent e44879e commit 474a00a

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

Week1/homework/step3.js

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,7 @@
11
"use strict";
22
let x;
3-
console.log("the value of my variable x will be a number");
3+
console.log(x);
4+
console.log("the value of my variable x will be a undefined");
45
x = 1;
56
console.log(x);
6-
x ++;
7-
console.log("the value of my variable x will be another number");
8-
console.log(x);
7+
console.log("the value of my variable x will be number");

0 commit comments

Comments
 (0)