mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
696 B
696 B
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