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 Object-Oriented JavaScript Getters and Setters Object Interaction

Why is the replace method not working for me?

https://w.trhou.se/d3a1j6oq2c

From what I can understand, the arguments for the replace methods here in pets.js is supposed to replace all non numeric characters with a space. Nothing is being replaced.

1 Answer

Robert Manolis
STAFF
Robert Manolis
Treehouse Guest Teacher

Hey Kirt Perez, it looks like there's an issue with your regex. It's missing some square brackets. Needs to be something like this: .replace(/[^0-9]/g, '');. :thumbsup:

Wow! Such a rookie mistake. Can't believe that went past me especially since I was trying to compare them side by side. Thank you!