## Repeat ### Instructions 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. ### Notions - [String.repeat](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat) - [Loops](https://nan-academy.github.io/js-training/examples/loops.js) - [Recursion](https://nan-academy.github.io/js-training/examples/recursion.js) ### Code provided > The provided code will be added to your solution, and does not need to be submitted. ```js String.prototype.repeat = undefined ```