## Repeat ### Instructions Create a `repeat` function that takes a string and a number as parameters and return the repeated string by the given number Like the method https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/String/repeat Of course you may not use the method directly ### Notions - https://nan-academy.github.io/js-training/examples/loops.js - https://nan-academy.github.io/js-training/examples/recursion.js - https://devdocs.io/javascript/global_objects/string/repeat ### Code provided ```js String.prototype.repeat = undefined ```