Browse Source

docs(same-amount): correct grammar

pull/1112/head
davhojt 2 years ago committed by Dav Hojt
parent
commit
4d7dad6dd3
  1. 8
      subjects/same-amount/README.md

8
subjects/same-amount/README.md

@ -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)

Loading…
Cancel
Save