From 4fe8c9a858b1c3275b9684b2f12fb953b08c66f8 Mon Sep 17 00:00:00 2001 From: Vyron Joshua Date: Wed, 18 Sep 2024 15:58:20 +0000 Subject: [PATCH] UPDATE introduction.js new lines --- 2-js-basics/introduction.js | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/2-js-basics/introduction.js b/2-js-basics/introduction.js index e69de29b..cc011af6 100644 --- a/2-js-basics/introduction.js +++ b/2-js-basics/introduction.js @@ -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); \ No newline at end of file