Skip to content
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

Andy sakai #1262

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
// Use IntelliSense to learn about possible attributes.
// Hover to view descriptions of existing attributes.
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "Launch Program",
"skipFiles": [
"<node_internals>/**"
],
"program": "${workspaceFolder}\\challenges\\arrays-callbacks.js"
}
]
}
46 changes: 41 additions & 5 deletions challenges/arrays-callbacks.js
Original file line number Diff line number Diff line change
Expand Up @@ -20,32 +20,59 @@ const zooAnimals = [
The zoos want to display both the scientific name and the animal name in front of the habitats. Populate the displayNames array with only the animal_name and scientific_name of each animal. displayNames will be an array of strings, and each string should follow this pattern: "Name: Jackal, asiatic, Scientific: Canis aureus."

*/
const displayNames = [];
console.log(displayNames);
var displayNames = []

zooAnimals.forEach((names) => {

displayNames.push(zooAnimals.animal_name + zooAnimals.scientific_name)
console.log(`Animal Name: ${names.animal_name}, Scientific Name: ${names.scientific_name}`)});

/* Request 2: .map()

The zoos need a list of all their animal's names (animal_name only) converted to lower case. Using map, create a new array of strings named lowCaseAnimalNames, each string following this pattern: "jackal, asiatic". Log the resut.

*/

const lowCaseAnimalNames = [];
console.log(lowCaseAnimalNames);

zooAnimals.map((Aname,index) => {

lowCaseAnimalNames.push(zooAnimals[index].animal_name);

console.log(`Animal Name: ${Aname.animal_name.toLowerCase()}`)
}
);

/* Request 3: .filter()

The zoos are concerned about animals with a lower population count. Using filter, create a new array of objects called lowPopulationAnimals which contains only the animals with a population less than 5.

*/
const lowPopulationAnimals = [];

zooAnimals.filter((pop) => {

if (pop.population < 5);
{
lowPopulationAnimals.push(pop.animal_name);
}


})

console.log(lowPopulationAnimals);

/* 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. Remember the reduce method takes two arguments: a callback (which itself takes two args), and an initial value for the count.


*/
let populationTotal = 0;

let populationTotal = zooAnimals.reduce((total, zoo) => {
return total += zoo.population;

}, 0)

console.log(populationTotal);


Expand All @@ -58,6 +85,15 @@ console.log(populationTotal);
* The consume function should return the invocation of cb, passing a and b into cb as arguments
*/

function consume (a,b,cb)
{
cb ()
{
a = arg1;
b = arg2;
}

}

/* Step 2: Create several functions to callback with consume();
* Create a function named add that returns the sum of two numbers
Expand Down