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

Update exercise.js #38

Closed
wants to merge 1 commit into from
Closed
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
11 changes: 11 additions & 0 deletions session-02/exercise.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@
*/
function transformArrayToUpper(listOfStrings) {
return;
Copy link
Member

Choose a reason for hiding this comment

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

Your tests are failing because this empty return statement needs to be removed. Your code wont execute because this ends the function first.

return listOfStrings.map(str => str.toUpperCase());

}

/*
Expand All @@ -17,6 +19,15 @@ function transformArrayToUpper(listOfStrings) {
*/
function sumOfAllAges(listOfStudentObjects) {
return;
Copy link
Member

Choose a reason for hiding this comment

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

Your tests are failing because this empty return statement needs to be removed. Your code wont execute because this ends the function first.

let totalAge = 0;

for (let i = 0; i < listOfStudentObjects.length; i++) {
if (listOfStudentObjects[i].age) {
totalAge += listOfStudentObjects[i].age;
}
}

return totalAge;
}

module.exports = { transformArrayToUpper, sumOfAllAges };
Loading