diff --git a/arrays.js b/arrays.js index 9a5827f..c6072ca 100644 --- a/arrays.js +++ b/arrays.js @@ -58,7 +58,43 @@ let inventory = [ { id: 49, car_make: "Chrysler", car_model: "Sebring", car_year: 1996 }, { id: 50, car_make: "Lincoln", car_model: "Town Car", car_year: 1999 } ]; - + + let years=["2009","2001","2010","1983","1990","1995", "2009","1987","1996","2000","2004","2004","1997","1999","2000","2001","1987", + "1995","1994","1985","2003","1997","1992","2003","2005","2005","2000","2005","1993","2010","1964","1999","2011","1991","2000","2003","1997", + "1992","1998","2012","1965","1996","2009","2012","2008","1995","2007","2008","1996","1999"]; + + let Oldcars= [ { id: 4, car_make: "Honda", car_model: "Accord", car_year: 1983 }, + { id: 5, car_make: "Mitsubishi", car_model: "Galant", car_year: 1990 }, + { id: 6, car_make: "Honda", car_model: "Accord", car_year: 1995 }, + { id: 8, car_make: "Audi", car_model: "4000CS Quattro", car_year: 1987 }, + { id: 9, car_make: "Ford", car_model: "Windstar", car_year: 1996 }, + { id: 13, car_make: "Chevrolet", car_model: "Cavalier", car_year: 1997 }, + { id: 14, car_make: "Dodge", car_model: "Ram Van 1500", car_year: 1999 }, + { id: 17, car_make: "Buick", car_model: "Skylark", car_year: 1987 }, + { id: 18, car_make: "Geo", car_model: "Prizm", car_year: 1995 }, + { id: 19, car_make: "Oldsmobile", car_model: "Bravada", car_year: 1994 }, + { id: 20, car_make: "Mazda", car_model: "Familia", car_year: 1985 }, + { id: 22, car_make: "Jeep", car_model: "Wrangler", car_year: 1997 }, + { id: 23, car_make: "Eagle", car_model: "Talon", car_year: 1992 }, + { id: 29, car_make: "Mercury", car_model: "Topaz", car_year: 1993 }, + { id: 31, car_make: "Pontiac", car_model: "GTO", car_year: 1964 }, + { id: 32, car_make: "Dodge", car_model: "Ram Van 3500", car_year: 1999 }, + { id: 34, car_make: "Ford", car_model: "Escort", car_year: 1991 }, + { id: 37, car_make: "Oldsmobile", car_model: "LSS", car_year: 1997 }, + { id: 38, car_make: "Toyota", car_model: "Camry", car_year: 1992 }, + { id: 39, car_make: "Ford", car_model: "Econoline E250", car_year: 1998 }, + { id: 41, car_make: "Ford", car_model: "Mustang", car_year: 1965 }, + { id: 42, car_make: "GMC", car_model: "Yukon", car_year: 1996 }, + { id: 46, car_make: "Oldsmobile", car_model: "Ciera", car_year: 1995 }, + { id: 49, car_make: "Chrysler", car_model: "Sebring", car_year: 1996 }, + { id: 50, car_make: "Lincoln", car_model: "Town Car", car_year: 1999 } + ] + + + let BMWAndAudi=[{ id: 30, car_make: "BMW", car_model: "6 Series", car_year: 2010 }, + { id: 25, car_make: "BMW", car_model: "525", car_year: 2005 }, + { id: 8, car_make: "Audi", car_model: "4000CS Quattro", car_year: 1987 },] + // Example Challenge: // The dealer wants to know how many "Mazda" cars they have. / Waxay rabaan inay ogaadaan meeqo gaari oo "Mazda" ah ayaa yaalo. @@ -81,6 +117,7 @@ let inventory = [ // console.log(`Car 33 is a *car year goes here* *car make goes here* *car model goes here*`); +console.log(inventory[32]) // ==== Challenge 2 ==== @@ -88,24 +125,28 @@ let inventory = [ // Waxay rabaan inay ogaadaan macluumaadka gaariga ugu dambeeyay. Waxaa ka mid ah inay noocuu yahay (make) iyo modelka gaariga ugu dambeeyay. - + console.log(inventory[49]) // ==== Challenge 3 ==== // The marketing team wants the car models listed alphabetically on the website. Sort all the car model names into alphabetical order and log the results in the console // Dadka qaabilsan xayaysiinta ayaa rabo in gawaarida loo soo bandhigo xarfaha habkey iskugu xigaan (alphabetically) si ay website-ka u galiyaan. Magacyada gawaawida oo dhan isku habee si A-Z ah kadibna console.log ku samee. - +console.log(inventory.sort()); // ==== Challenge 4 ==== // The accounting team needs all the years from every car on the lot. Create a new array from the dealer data containing only the car years and log the result in the console. // Dadka qaabilsan xisaabinta ayaa rabo inay ogaadaan sanadyada gawaarida oo dhan. Array cusub samee, kadibna ku shub sanadyada gawaarida oo dhan kadibna console.log ku samee. + console.log(years); // ==== Challenge 5 ==== // The car lot manager needs to find out how many cars are older than the year 2000. Find out how many cars were made before the year 2000 by populating the array oldCars and logging it's length. // Qofka maamulo ganacsiga ayaa rabo inuu ogaado inta gaari oo ka horeysay sanadkii 2000. Isticmaal array 'oldCars', kuna shub gawaarida ka horeysay 2000. Kadib console log ku samee. +console.log(Oldcars); + // ==== Challenge 6 ==== // A buyer is interested in seeing only BMW and Audi cars within the inventory. Return an array that only contains BMW and Audi cars. Once you have populated the BMWAndAudi array, use JSON.stringify() to show the results of the array in the console. // Qof rabo inuu gaari gato ayaa rabo inuu ogaado inta BMW iyo Audi yaalo. Array 'BMWAndAudi' la dhaho ku shub dhamaan gawaarida BMW iyo Audi. Kadib adigoo isticmaalaayo JSON.stringify() console.log ku samee. +console.log(JSON.stringify(BMWAndAudi)) \ No newline at end of file diff --git a/basics.js b/basics.js index 8036dce..e6c4a7d 100644 --- a/basics.js +++ b/basics.js @@ -8,7 +8,9 @@ Do the following: HINT: look up the Number method / Raadi Number Method wax la dhaho */ - +let string = "1999"; +let number = parseInt(string); +console.log(number, typeof(number)) /* Task: Mood Checker @@ -20,6 +22,10 @@ Do the following: */ +let moodChecker; +if(happy) { console.log ("Yay me too!")} +else {console.log("So moody!")} + /* Task: Odd or Even / kisi ama dhaban @@ -107,6 +113,18 @@ Using the vowelCounter function below do the following: */ -function vowelCounter(/*add your code here*/) { - /*add your code here*/ -} +function vowelCounter(){ + for(let i = 1; i<=100 ;i++){ + if (i % 3 ===0 && i % 5 === 0){ + console.log("FizzBuzz");} + else if (i % 3 === 0){ + console.log("Fizz");} + else if (i % 5 === 0){ + console.log("Buzz");} + else {console.log(i); + } + } + } + vowelCounter(); // calling the function + + diff --git a/functions.js b/functions.js index e88aca4..e2169b6 100644 --- a/functions.js +++ b/functions.js @@ -3,12 +3,11 @@ // Take the commented ES5 syntax and convert it to ES6 arrow Syntax -/* +invoke ------------ -function myFunction() { +function myFunction() console.log("Function was invoked!"); -}; myFunction(); ---------------- @@ -27,7 +26,7 @@ let add = function (param1, param2) { add(1,2); -*/ + @@ -51,4 +50,12 @@ Use the game function below to do the following: function game(user, computer){ /*add your code here*/ + if (user === scissors && computer === paper){ + console.log("you win!"); + } + if (user===rock && computer===paper){ console.log + ("you lose!")} + else(user===paper && computer===paper) { + console.log("it's a tie") + } } diff --git a/objects.js b/objects.js index 9640e8c..fe47547 100644 --- a/objects.js +++ b/objects.js @@ -24,21 +24,62 @@ const example = { // Once your objects are created, log out the following requests from HR into the console: // Mitzi's name - + + const Mitzi={ + name: "Mitzi", + email: "mmelloy0@psu.edu", + gender: "F" + } +console.log(Mitzi.name) + // Kennan's ID + const Kennan ={ + id:"1", + name: "Kennan", + email: "kdiben1@tinypic.com", + gender: "M", + speak: "Hello, my name is Kennan!"} + +console.log(Kennan.id) + // Keven's email + const Keven={ + name: "Keven", + email: "kmummery2@wikimedia.org", + gender: "M"} + +console.log(Keven.email) + // Gannie's name + const Gannie={ + name: "Gannie", + email: "gmartinson3@illinois.edu", + gender: "M"} + +console.log(Gannie.name) + // Antonietta's Gender + const Antonietta={ + name: "Antonietta", + email: "adaine5@samsung.com", + gender: "F", + multiplyNums:(3,4)} + + console.log(Antonietta.gender) + // ==== Challenge 3: Object Methods ==== // Give Kennan the ability to say "Hello, my name is Kennan!" Use the console.log provided as a hint. // console.log(kennan.speak()); - + +console.log(Kennan.speak) + // Antonietta loves math, give her the ability to multiply two numbers together and return the product. Use the console.log provided as a hint. //console.log(antonietta.multiplyNums(3,4)); + console.log(Antonietta.multiplyNums) // === Great work! === Head over to the the arrays.js. You may come back and attempt the Stretch Challenge once you have completed the challenges in arrays.js and function-conversion.js. \ No newline at end of file