From fb0812b6d2ea8b32d2d7ba7754fa2c41421b858a Mon Sep 17 00:00:00 2001 From: Atakan Date: Sat, 31 Oct 2020 22:01:03 +0300 Subject: [PATCH] fix(learn): added description about a nonallowed method (#40121) --- .../repeat-a-string-repeat-a-string.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/repeat-a-string-repeat-a-string.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/repeat-a-string-repeat-a-string.md index 9aa89ddbfa..e4db2524a3 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/repeat-a-string-repeat-a-string.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-algorithm-scripting/repeat-a-string-repeat-a-string.md @@ -7,7 +7,7 @@ forumTopicId: 16041 ## Description
-Repeat a given string str (first argument) for num times (second argument). Return an empty string if num is not a positive number. +Repeat a given string str (first argument) for num times (second argument). Return an empty string if num is not a positive number. For the purpose of this challenge, do not use the built-in .repeat() method.
## Instructions