how do I match this phone number in Javascript?
> str \"(555) 555-3300\" > str.match( \'/\\(555\\) 555-3300/gi/\' ) null > str.match( \'/(555) 555-3300/
Lose the quotes:
str.match(/\(480\) 945-3300/g)