Skip to content

Commit

Permalink
UPDATE introduction.js new lines
Browse files Browse the repository at this point in the history
  • Loading branch information
buenvyron committed Sep 18, 2024
1 parent 9989c23 commit 4fe8c9a
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions 2-js-basics/introduction.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
var hello = 'hello';
console.log(hello);
hello = "Hello World";
console.log(hello);

if (true) {
let world = "Hello World!";
console.log(world);
console.log(hello);
}

const VYRON = "Vyron";
console.log(VYRON);

0 comments on commit 4fe8c9a

Please sign in to comment.