From 4d8b66f7731f921674bc55ab60d2db0bf62d8cad Mon Sep 17 00:00:00 2001 From: Cule219 Date: Tue, 31 Mar 2020 09:04:27 -0400 Subject: [PATCH 1/2] first two iterations --- js/index.js | 36 +++++++++++++++++++++++++++++++++++- 1 file changed, 35 insertions(+), 1 deletion(-) diff --git a/js/index.js b/js/index.js index dd8ff0062..b39901b5f 100644 --- a/js/index.js +++ b/js/index.js @@ -1,7 +1,41 @@ // Iteration 1: Names and Input +let hacker1 = "Stefan"; +console.log(`The driver's +name is ${hacker1}`); +let hacker2 = "Juan"; +console.log("The navigator's name is " + hacker2); // Iteration 2: Conditionals +if (hacker1.length > hacker2.length) { + console.log( + `The driver has the longest name. It has ${hacker1.length} characters.` + ); +} else if (hacker1.length < hacker2.length) { + console.log( + `It seems that the navigator has the longest name, it has ${hacker2.length} characters.` + ); +} else { + console.log( + `Wow, you both have equally long names, ${hacker1.length} characters!` + ); +} +switch (true) { + case hacker1.length > hacker2.length: + console.log( + `The driver has the longest name. It has ${hacker1.length} characters.` + ); + break; + case hacker1.length < hacker2.length: + console.log( + `It seems that the navigator has the longest name, it has ${hacker2.length} characters.` + ); + break; + default: + console.log( + `Wow, you both have equally long names, ${hacker1.length} characters!` + ); +} -// Iteration 3: Loops \ No newline at end of file +// Iteration 3: Loops From 3c64759dbe9796eb8faab384f5e2e6d7410daff9 Mon Sep 17 00:00:00 2001 From: Tzikas Date: Tue, 31 Mar 2020 11:24:32 -0400 Subject: [PATCH 2/2] finished lab --- index.html | 19 +++++++++++ js/index.js | 98 +++++++++++++++++++++++++++++++++++++++++++++++++++-- styles.css | 4 +++ 3 files changed, 119 insertions(+), 2 deletions(-) create mode 100644 index.html create mode 100644 styles.css diff --git a/index.html b/index.html new file mode 100644 index 000000000..5831d9155 --- /dev/null +++ b/index.html @@ -0,0 +1,19 @@ + + + + + + + Document + + + + +

Welcoem to Tuesday

+

ANything i type

+ + + + + + \ No newline at end of file diff --git a/js/index.js b/js/index.js index b39901b5f..1e8ec11d1 100644 --- a/js/index.js +++ b/js/index.js @@ -1,9 +1,11 @@ // Iteration 1: Names and Input -let hacker1 = "Stefan"; + + +let hacker1 = "Alex"; console.log(`The driver's name is ${hacker1}`); -let hacker2 = "Juan"; +let hacker2 = "Alexander"; console.log("The navigator's name is " + hacker2); // Iteration 2: Conditionals @@ -38,4 +40,96 @@ switch (true) { ); } +console.log("ITERATION 3") + // Iteration 3: Loops +// 3.1 Print all the characters of the driver's name, separated by a space and in capitals i.e. "J O H N" +// let driver = []; +// for(let i=0; i=0; i--){ + console.log(i) + navigatorReverse.push(hacker2[i]) +} + +console.log( navigatorReverse.join('') ) + +// console.log( hacker2.split('').reverse().join('') ) + +console.log(`3.3 Depending on the lexicographic order of the strings, print: +- The driver's name goes first. +- Yo, the navigator goes first definitely. +- What?! You both have the same name?`) + +let names = [hacker1, hacker2]; +console.log(names) + +names.sort(); +console.log(names) + + +// if(hacker1.length < hacker2.length){ +// console.log(`The ${hacker1} name goes first.`) +// } +// else if (hacker2.length < hacker1.length){ +// console.log(`Yo, the ${hacker2} goes first definitely.`) +// } +// else { +// console.log(`What?! You both have the same name?`) +// } + + +if ( hacker1.localeCompare(hacker2) === -1){ + console.log(`The ${hacker1} name goes first.`) +} +else if ( hacker1.localeCompare(hacker2) === 1) { + console.log(`Yo, the ${hacker2} goes first definitely.`) +} +else { + console.log(`What?! You both have the same name?`) +} + +// hacker1.localeCompare(hacker2) === -1 ? : "true dogs" : "false cats" +// // 2 + 2 === 5 ? "true dogs" : "false cats" +// // "false cats" + + + + +let par1 = `25 shmeckles? I-I-I-I don't even know what that- what is that? Is that a lot? There's pros and cons to every alternate timeline. Fun facts about this one – It's got giant, telepathic spiders, 11 9/11s, and the best ice cream in the multiverse! This is because you give Morty Smith bad grades, bitch! Listen, Morty, I hate to break it to you but what people call love is just a chemical reaction that compels animals to breed` + +let par2 = `If you break the rules, try to leave or lose the game, you will die. Just like Saaaaw. Not today bitch! Flip the pickle over. Wow, so your origin is what? You fell into a vat of redundancy?` + +let par3 = `"And"? What more youtube do you want tacked on to this? I turned myself into a pickle, and 9/11 was an inside job?" He threatened to turn me in to the government, so I made him and the government go away! I'm Mr. Crowbar, and here is my friend, who is also a crowbar! Must… continue… moving… in… ways… that… lead… to… dying… with… you.` + + + + +console.log((par1 + par2 + par3).split(' ').length) + +let par = par1 + par2 + par3 //Made it into one string + +console.log( par.split('you').length - 1 ) + +//RegExp +console.log( par.match(/you/g).length ) + + + +let phraseToCheck = "A man, a plan, a canal, Panama!" +phraseToCheck = phraseToCheck.replace(/[,! ]/g,"").toLowerCase() + + +let reversePhrase = phraseToCheck.split('').reverse().join('') + +console.log(phraseToCheck) +console.log(reversePhrase) +console.log(phraseToCheck == reversePhrase) + diff --git a/styles.css b/styles.css new file mode 100644 index 000000000..439a4dd0b --- /dev/null +++ b/styles.css @@ -0,0 +1,4 @@ + +body{ + background-color:magenta; +} \ No newline at end of file