Completed second exercise

This commit is contained in:
octopusGarden 2022-10-24 15:36:18 -04:00
parent c64fc24cc5
commit f41af975a6
1 changed files with 2 additions and 2 deletions

View File

@ -1,5 +1,5 @@
const repeatString = function() {
const repeatString = function(string, num) {
return string.repeat(num);
};
// Do not edit below this line