Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions 03-Developer-Skills/starter/script.js
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
// Remember, we're gonna use strict mode in all scripts now!
'use strict';

<script>
var x, y, z; // Declare 3 variables
x = 5; // Assign the value 5 to x
y = 6; // Assign the value 6 to y
z = x + y; // Assign the sum of x and y to z

console.log("Hello");
4 changes: 4 additions & 0 deletions 05-Guess-My-Number/starter/script.js
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
'use strict';


let const = 0;
console.console.log(const);