public/subjects/repeat
davhojt a756b9c2f0 docs(repeat): correct grammar 2022-05-31 08:27:51 +02:00
..
README.md docs(repeat): correct grammar 2022-05-31 08:27:51 +02:00

README.md

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

Code provided

The provided code will be added to your solution, and does not need to be submitted.

String.prototype.repeat = undefined