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()

Aziz Kemal HOSCAN
seal-mask
.a{fill-rule:evenodd;}techdegree seal-36
Aziz Kemal HOSCAN
Full Stack JavaScript Techdegree Graduate 16,113 Points

Unable to build conditional statement

I am pretty sure that the problem is my conditional statement. I tried different codes but still unable solve the problem. Please help

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.slice(1,4) === '/(503)/') {
    return count + 1;
  }
  return count;
}, 0);

1 Answer

Sean T. Unwin
Sean T. Unwin
28,690 Points

You are correct that the issue is with your conditional statement.

The issue is:

  • Conflating RegExp syntax, with the slashes, within a String i.e. '/(503)/'
  • number.slice(1,4) does not include the area code brackets, only the characters between

There two (2) ways to accomplish what you want.

  1. RegExp function test() - [Reference at MDN]

    • /503/.test(number.slice(1,4))
  2. Static String check, similar to what you have now without the RegExp slashes as well as brackets

    • number.slice(1,4) === '503'