|
|
|
@ -2,12 +2,10 @@
|
|
|
|
|
|
|
|
|
|
### Instructions |
|
|
|
|
|
|
|
|
|
Create a `sameAmount` function that takes three parameter, |
|
|
|
|
a data string and 2 regexes. |
|
|
|
|
Create a function named `sameAmount`, that takes three arguments: a `string`, and 2 regular expressions. Your function should return a `boolean`. |
|
|
|
|
|
|
|
|
|
The objective is to confirm that the second and the third parameter matched |
|
|
|
|
the same amount of times in the first parameter. |
|
|
|
|
The objective is to confirm that the regular expressions match the string the same number of times. |
|
|
|
|
|
|
|
|
|
### Notions |
|
|
|
|
|
|
|
|
|
- [developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#Using_regular_expressions_in_JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#Using_regular_expressions_in_JavaScript) |
|
|
|
|
- [Using regular expressions in JavaScript](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Regular_Expressions#Using_regular_expressions_in_JavaScript) |
|
|
|
|