Welcome to the Treehouse Community
The Treehouse Community is a meeting place for developers, designers, and programmers of all backgrounds and skill levels to get support. Collaborate here on code errors or bugs that you need feedback on, or asking for an extra set of eyes on your latest project. Join thousands of Treehouse students and alumni in the community today. (Note: Only Treehouse students can comment or ask questions, but non-students are welcome to browse our conversations.)
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and a supportive community. Start your free trial today.

Joe Mbome
Front End Web Development Techdegree Graduate 17,250 PointsphoneNumbers is array of 10 digit phone numbers, where the first three digits, in parentheses, are area codes. Using red
not sure how to go about this
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((acc,number)=>number.substr(0,2)===503, 0);
1 Answer

Blake Larson
12,990 PointsThe substring
function will return a string so you want to compare it to "503"
. substring(1, 4)
gets the 3 numbers between the parentheses. Pretty sure this will pass this challenge.
numberOf503 = phoneNumbers.reduce((acc, number) => {
if(number.substring(1, 4) === "503") {
acc++
}
return acc;
} , 0);
I would definitely use filter
for something like this though when you get to use what you want. Just easier to use and cleaner. That would be like this in future scenarios.
numberOf503 = phoneNumbers.filter((number) => number.substring(1, 4) === "503").length;