-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Sprint-Challenge--JavaScript Kseniya Platonava #776
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: master
Are you sure you want to change the base?
Changes from all commits
6425855
1452e01
2476b97
35b3f15
d43c228
bcf965b
6b5a7bf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,14 @@ | ||
| 1. - forEach() — executes a provided function once for each array element. | ||
| - map() — creates a new array with the results of calling a provided function on every element in the calling array. | ||
|
|
||
| 2. Functions are defined outside of classes, while Methods are defined inside of and part of classes. | ||
|
|
||
| 3. A closure is an inner function that has access to the outer (enclosing) function's variables—scope chain. | ||
|
|
||
| 4. Four rules are: | ||
| - Global Object Binding (in the global scope, the value of “this” will be the window | ||
| - Implicit Binding (a function is called by a preceding dot, the object before that dot is this) | ||
| - New binding (a constructor function is used, this refers to the specific instance of the object that is created and returned by the constructor function) | ||
| - Explicit binding (JavaScript’s call or apply method is used, this is explicitly defined) | ||
|
|
||
| 5. Super() is used to pass any new attributes back up to the constructor of the parent object. |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,11 +7,29 @@ | |
| */ | ||
|
|
||
| // tyrannosaurus, carnivorous, 7000kg, 12m, Late Cretaceious | ||
|
|
||
| const tyrannosaurus ={ | ||
| 'name': 'tyrannosaurus', | ||
| 'diet': 'carnivorous', | ||
| 'weight': '7000kg', | ||
| 'length':'12m', | ||
| 'period':'Late Cretaceious' | ||
| } | ||
| // stegosaurus, herbivorous, 2000kg, 9m, Late Jurassic | ||
|
|
||
| const stegosaurus ={ | ||
| 'name': 'stegosaurus', | ||
| 'diet': 'herbivorous', | ||
| 'weight': '2000kg', | ||
| 'length':'9m', | ||
| 'period':'Late Jurassic' | ||
| } | ||
| // velociraptor, carnivorous, 15kg, 1.8m, Late Cretaceious | ||
|
|
||
| const velociraptor ={ | ||
| 'name': 'velociraptor', | ||
| 'diet': 'carnivorous', | ||
| 'weight': '15kg', | ||
| 'length':'1.8m', | ||
| 'period':'Late Cretaceious' | ||
| } | ||
| // Using your dinosaur objects, log answers to these questions: | ||
|
|
||
| // How much did tyrannosaurus weigh? | ||
|
|
@@ -24,6 +42,10 @@ console.log(stegosaurus.length); | |
| console.log(tyrannosaurus.period); | ||
|
|
||
| // Create a new roar method for the tyrannosaurus. When called, return "RAWERSRARARWERSARARARRRR!" Log the result. | ||
| tyrannosaurus.roar = function(){ | ||
| return "RAWERSRARARWERSARARARRRR!"; | ||
| } | ||
|
|
||
| console.log(tyrannosaurus.roar()); | ||
|
|
||
|
|
||
|
|
@@ -46,20 +68,34 @@ const graduates = [{"id":1,"first_name":"Cynde","university":"Missouri Southern | |
|
|
||
| Once you have the new array created, sort the universities alphabetically and log the result. */ | ||
| const universities = []; | ||
| for (i=0; i<graduates.length; i++){ | ||
| universities.push(graduates[i].university); | ||
| universities.sort(); | ||
| } | ||
| console.log(universities) | ||
|
|
||
|
|
||
| /* Request 2: Create a new array called contactInfo that contains both first name and email of each student. | ||
|
|
||
| The resulting contact information should have a space between the first name and the email information like this: | ||
| Name [email protected] | ||
|
|
||
| Log the result of your new array. */ | ||
| const contactInfo = []; | ||
| for (i=0; i<graduates.length; i++){ | ||
| contactInfo.push(`${graduates[i].first_name}'s email is ${graduates[i].email}`); | ||
|
|
||
| } | ||
| console.log(contactInfo); | ||
|
|
||
|
|
||
| /* Request 3: Find out how many universities have the string "Uni" included in their name. Create a new array called uni that contains them all. Log the result. */ | ||
| const uni = []; | ||
|
|
||
| for (i = 0; i < graduates.length; i++) { | ||
| if (graduates[i].university.includes('Uni')){ | ||
| uni.push(graduates[i].university);} | ||
| } | ||
| console.log(uni); | ||
|
|
||
|
|
||
|
|
@@ -85,31 +121,38 @@ The zoo wants to display both the scientific name and the animal name in front o | |
|
|
||
| */ | ||
| const animalNames = []; | ||
| console.log(animalNames); | ||
|
|
||
| zooAnimals.forEach(function(zooAnimal){console.log(`Name: ${zooAnimal.animal_name}, Scientific: ${zooAnimal.scientific_name}.`)}) | ||
| console.log(animalNames); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. While you are logging out the correct values here, the request is for you to create an array of the values that you are logging. Currently, you're just logging out a single string every time your The correct way to do this, is by using the |
||
| /* Request 2: .map() | ||
|
|
||
| The zoos need a list of all their animal's names (names only, not scientific) converted to lower case. Create a new array named lowerCase and map over each name to convert them all to lower case. Log the resut. | ||
|
|
||
| */ | ||
|
|
||
| const lowerCase = []; | ||
| lowerCase.push(zooAnimals.map(function(zooAnimal){return zooAnimal.animal_name.toLowerCase()})); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Here you are creating a new array (with the To resolve this, just assign the newly created array to the lowerCase variable, instead of pushing the newly created array into the array assigned to the lowerCase variable. Here is an example (I'm also using arrow notation), please let me know if you have any questions: |
||
|
|
||
| console.log(lowerCase); | ||
|
|
||
| /* Request 3: .filter() | ||
|
|
||
| The zoos are concenred about animals with a lower population count. Find out which animals have a population less than 5. | ||
|
|
||
| */ | ||
| const largerPopulation = []; | ||
| const largerPopulation = []; //is is a trick to call the variable largePopulation and ask about small populations? | ||
|
|
||
| largerPopulation.push(zooAnimals.filter((zooAnimal)=>zooAnimal.population < 5)); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Similar to the above lowerCase issue, here you are creating a new array (with the To resolve this, just assign the newly created array to the largerPopulation variable, instead of pushing the newly created array into the array assigned to the largerPopulation variable. Here is an example (I'm also using arrow notation), please let me know if you have any questions: |
||
|
|
||
| console.log(largerPopulation); | ||
|
|
||
| /* Request 4: .reduce() | ||
|
|
||
| The zoos need to know their total animal population across the United States. Find the total population from all the zoos using the .reduce() method. | ||
|
|
||
| */ | ||
| const populationTotal; | ||
| const populationTotal = []; | ||
| populationTotal.push(zooAnimals.reduce(function (sum, current) {return sum + current.population},0)); | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Using push is fine here, but it is better to assign the value directly to This is because an array is meant to hold a collection of values, whereas your reduce function is reducing down to and returning only a single value. Pushing that single value into an array is unnecessary. |
||
| console.log(populationTotal); | ||
|
|
||
|
|
||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While you've partially done this stretch goal correctly (great job!), this isn't really a CubeMaker. It's another CuboidMaker. The biggest difference between a Cube and a Cuboid is that all the sides of a Cube are the same length, but a Cuboid can have sides of different length. As such, a CubeMaker would only take one argument, as all of the sides would be equal to that one argument. Here is an example, please let me know if you have any questions:
Also take note of how the
volume()andsurfaceArea()methods are different.