Skip to content

Commit 1650a7d

Browse files
committed
Paused Learning - Let, Const, Var
Returning to learning at a later time. Left off on Let, Const, and Var demonstrations.
1 parent 84397f0 commit 1650a7d

File tree

1 file changed

+15
-2
lines changed

1 file changed

+15
-2
lines changed

01-Fundamentals-Part-1/starter/script.js

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,23 @@ console.log(typeof year);
3030
//Bug in JavaScript. Not corrected for Legacy reasons. Should return 'null' but returns 'object'
3131
console.log(typeof null);
3232
33-
*/
33+
3434
3535
let age = 30;
3636
age = 31;
3737
3838
const birthYear = 1990;
39-
birthYear = 1991;
39+
birthYear = 1991;
40+
41+
*/
42+
43+
let age = 30;
44+
age = 31;
45+
46+
const birthYear = 1998;
47+
// birthYear = 1997;
48+
49+
// const job;
50+
51+
var job = 'programmer';
52+
job = 'game developer';

0 commit comments

Comments
 (0)