Skip to content
Merged
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
80 changes: 74 additions & 6 deletions assignments/array-methods.js
Original file line number Diff line number Diff line change
Expand Up @@ -56,28 +56,96 @@ const runners = [{"id":1,"first_name":"Charmain","last_name":"Seiler","email":"c
// ==== Challenge 1: Use .forEach() ====
// The event director needs both the first and last names of each runner for their running bibs. Combine both the first and last names into a new array called fullName.
let fullName = [];
console.log(fullName);
runners.forEach(function(obj) {
fullName.push([obj.first_name + obj.last_name])
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This is gonna look weird.. "LydiaThornton" vs "Lydia Thornton" for example

return fullName;
})
//console.log(fullName);


// ==== Challenge 2: Use .map() ====
// The event director needs to have all the runner's first names converted to uppercase because the director BECAME DRUNK WITH POWER. Convert each first name into all caps and log the result
let allCaps = [];
console.log(allCaps);
runners.map(function(obj) {
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

.map() returns an array, so you don't need to use "push()" here

allCaps.push(obj.first_name.toUpperCase());
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Suggested change
allCaps.push(obj.first_name.toUpperCase());
allCaps = runners.map(obj => obj.first_name.toUpperCase());

})
//console.log(allCaps);

// ==== Challenge 3: Use .filter() ====
// The large shirts won't be available for the event due to an ordering issue. Get a list of runners with large sized shirts so they can choose a different size. Return an array named largeShirts that contains information about the runners that have a shirt size of L and log the result
let largeShirts = [];
console.log(largeShirts);
runners.filter(function(obj) {
if (obj.shirt_size === "L") {
largeShirts.push(obj)
}
return largeShirts;
})
//console.log(largeShirts);

// ==== Challenge 4: Use .reduce() ====
// The donations need to be tallied up and reported for tax purposes. Add up all the donations into a ticketPriceTotal array and log the result
let ticketPriceTotal = [];
console.log(ticketPriceTotal);

let ticketPriceTotal =
runners.reduce(function(total, runner) {
return total + runner.donation
},0)


runners.reduce((total, runner) => {
return total + runner.donation
},0)



//console.log(ticketPriceTotal)


// ==== Challenge 5: Be Creative ====
// Now that you have used .forEach(), .map(), .filter(), and .reduce(). I want you to think of potential problems you could solve given the data set and the 5k fun run theme. Try to create and then solve 3 unique problems using one or many of the array methods listed above.

// Problem 1
let companies = []
runners.forEach(function(obj) {
companies.push(obj.company_name)
return companies
})
//console.log(companies)

// Problem 2

// Problem 3
let correctEmail = []
runners.map(function(obj) {
if (obj.email.split("@").length === 2) {
correctEmail.push(obj.email)
}
return correctEmail;
})
//console.log(correctEmail)

// Problem 3 Made a shirt size counter




let shirts = []
runners.forEach(function(obj) {
shirts.push(obj.shirt_size)
return shirts
})


console.log(shirts)


var countedShirts = shirts.reduce(function (allShirts, shirt) {
if (shirt in allShirts) {
allShirts[shirt]++;
}
else {
allShirts[shirt] = 1;
}
return allShirts;
}, {});


console.log(countedShirts)
30 changes: 30 additions & 0 deletions assignments/callbacks.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,26 +23,56 @@ const items = ['Pencil', 'Notebook', 'yo-yo', 'Gum'];


function getLength(arr, cb) {
return cb(arr.length)
// getLength passes the length of the array into the callback.
}

getLength(items, function(length) {
console.log(length);
})


function last(arr, cb) {
return cb(arr[arr.length - 1])
// last passes the last item of the array into the callback.
}

last(items, function(last) {
console.log(last);
})

function sumNums(x, y, cb) {
return cb(x + y)
// sumNums adds two numbers (x, y) and passes the result to the callback.
}

sumNums(6, 5, function(add) {
console.log(add)
})

function multiplyNums(x, y, cb) {
return cb( x * y)
// multiplyNums multiplies two numbers and passes the result to the callback.
}

multiplyNums(5, 6, function(product) {
console.log(product);
})

function contains(item, list, cb) {
if (list.includes(item)) {
return cb(true);
} else {
return cb(false);
}
// contains checks if an item is present inside of the given array/list.
// Pass true to the callback if it is, otherwise pass false.
}

contains('Notebook', items, function(isThere) {
console.log(isThere)
})

/* STRETCH PROBLEM */

function removeDuplicates(array, cb) {
Expand Down
28 changes: 25 additions & 3 deletions assignments/closure.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,41 @@
// Write a simple closure of your own creation. Keep it simple!


let decrementer = 0;
function sub() {
return decrementer -= 1
}
console.log(sub())


// ==== Challenge 2: Create a counter function ====
const counter = () => {
// Return a function that when invoked increments and returns a counter variable.
let count = 0
return function () {
return count += 1
}
};
// Example usage: const newCounter = counter();
// newCounter(); // 1
// newCounter(); // 2

const newCounter = counter();
console.log(newCounter()); // 1
console.log(newCounter()); // 2

/* STRETCH PROBLEM, Do not attempt until you have completed all previous tasks for today's project files */

// ==== Challenge 3: Create a counter function with an object that can increment and decrement ====
let count = 0
const counterFactory = () => {

let count = 0;
function increment() {
return count += 1
}
function decrement() {
return count -= 1
}
// Return an object that has two methods called `increment` and `decrement`.
// `increment` should increment a counter variable in closure scope and return it.
// `decrement` should decrement the counter variable and return it.
};