We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 831aff5 commit fa3166dCopy full SHA for fa3166d
Regular-Expressions/Match-All-Non-Numbers/script.js
@@ -0,0 +1,3 @@
1
+let movieName = "2001: A Space Odyssey";
2
+let noNumRegex = /\D/g;
3
+let result = movieName.match(noNumRegex).length;
0 commit comments