fix(learn): added description about a nonallowed method (#40121)

This commit is contained in:
Atakan
2020-10-31 22:01:03 +03:00
committed by GitHub
parent 8ceae38730
commit fb0812b6d2

View File

@ -7,7 +7,7 @@ forumTopicId: 16041
## Description
<section id='description'>
Repeat a given string <code>str</code> (first argument) for <code>num</code> times (second argument). Return an empty string if <code>num</code> is not a positive number.
Repeat a given string <code>str</code> (first argument) for <code>num</code> times (second argument). Return an empty string if <code>num</code> is not a positive number. For the purpose of this challenge, do <em>not</em> use the built-in <code>.repeat()</code> method.
</section>
## Instructions