Browse Source

docs(repeat): correct grammar

pull/1112/head
davhojt 2 years ago committed by Dav Hojt
parent
commit
a756b9c2f0
  1. 14
      subjects/repeat/README.md

14
subjects/repeat/README.md

@ -2,20 +2,16 @@
### Instructions ### Instructions
Create a `repeat` function that takes a string and a number as parameters Create a function named `repeat` that takes a `string` and a `number` as arguments, and returns the string repeated as many times as the number describes. It should function like `String.repeat()`, but of course you must make your own.
and return the repeated string by the given number
Like the method [developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat)
Of course you may not use the method directly
### Notions ### Notions
- [String.repeat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat)
- [nan-academy.github.io/js-training/examples/loops](https://nan-academy.github.io/js-training/examples/loops.js) - [Loops](https://nan-academy.github.io/js-training/examples/loops.js)
- [nan-academy.github.io/js-training/examples/recursion](https://nan-academy.github.io/js-training/examples/recursion.js) - [Recursion](https://nan-academy.github.io/js-training/examples/recursion.js)
- [devdocs.io/javascript/global_objects/string/repeat](https://devdocs.io/javascript/global_objects/string/repeat)
### Code provided ### Code provided
> all code provided will be added to your solution and doesn't need to be submited. > The provided code will be added to your solution, and does not need to be submitted.
```js ```js
String.prototype.repeat = undefined String.prototype.repeat = undefined

Loading…
Cancel
Save