From f4cf14193d43a19fd53958c70e996ac89a676585 Mon Sep 17 00:00:00 2001 From: Gideon Buba Date: Mon, 25 Sep 2023 00:25:21 +0100 Subject: [PATCH] initial commit --- .DS_Store | Bin 14340 -> 14340 bytes 01_Day_JavaScript_Refresher/introduction.js | 3 ++- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.DS_Store b/.DS_Store index 321f293cae4347496a5683597e4cdb5e4cc0bb7b..723393bac13bed169e742c3cb7443243b5ab025a 100644 GIT binary patch delta 166 zcmZoEXepTRK-tm0$)Yads3QXd0}F#5LpnnyLrFn~VQ_MOZUIn?fl*__WW;sB~N BEJ^?X diff --git a/01_Day_JavaScript_Refresher/introduction.js b/01_Day_JavaScript_Refresher/introduction.js index bd9cf56..80b3885 100644 --- a/01_Day_JavaScript_Refresher/introduction.js +++ b/01_Day_JavaScript_Refresher/introduction.js @@ -6,8 +6,9 @@ popUp.addEventListener('click', function() { // Arrays -const names = Array('Gideon', 'Courage', 'Femi', 'Jude', 250, true, false); +const names = Array('Gideon', 'Courage', 'Femi', 'Jude', 250, true, false, 'HTML', 'CSS', 'Python'); names[1] = 'Wife' +names[0] = 'Husband' let firtsName = names[0]; const strings = " 'Gideon', 'Courage', 'Mufasa' " const splitstrings = strings.split('')