2 Matching Annotations
- Apr 2025
-
stackoverflow.com stackoverflow.com
-
One important thing to remember is that in regular strings the \ character needs to be escaped while in the regex literal (usually) the / character needs to be escaped. So /\w+\//i becomes new RegExp("\\w+/", "i")
Easier/prettier in Ruby than JS
-
- Mar 2021
-
www.sitepoint.com www.sitepoint.com
-
JavaScript, as a language, has some fundamental shortcomings — I think the majority of us agree on that much. But everyone has a different opinion on what precisely the shortcomings are.
-