Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript Array Iteration Methods Array Manipulation Practice reduce()

Reduce method

I dont why this doesnt work, I think its close to success. Hope someone can help me out, thank you so much!!

app.js
const phoneNumbers = ["(503) 123-4567", "(646) 123-4567", "(503) 987-6543", "(503) 234-5678", "(212) 123-4567", "(416) 123-4567"];
let numberOf503;

// numberOf503 should be: 3
// Write your code below
numberOf503 = phoneNumbers.reduce((count,number) => {
       if(number.charAt(0,5) == '(503)'){
          count+1;
       }
});

Thank you so much!

1 Answer

Steven Parker
Steven Parker
229,732 Points

You're getting close, but you have a few issues yet:

  • "charAt" returns only one character, did you perhaps mean to use "slice"?
  • the "+" operator adds without changing the operand, the "+=" operator adds and assigns
  • the callback function needs to return the result
  • the "reduce" needs an explicit numeric starting value, since the array contains strings

Ok, thank you so much! I still confuse about the return keyword, I mean when you should use the return keyword?

Steven Parker
Steven Parker
229,732 Points

Place "return count;" at the end of the callback function (after the "if" block).