fix: updated challenges text (#34458)

This commit is contained in:
Abhishek Kakade 2018-11-27 02:05:14 +05:30 committed by Aditya
parent 8a7b6f69a3
commit f4f5ce4b85

View File

@ -14,7 +14,7 @@ The rest operator eliminates the need to check the <code>args</code> array and a
## Instructions
<section id='instructions'>
Modify the function <code>sum</code> so that it uses the rest operator and it works in the same way with any number of parameters.
Modify the function <code>sum</code> using the rest parameter in such a way that the function <code>sum</code> is able to take any number of arguments and return their sum.
</section>
## Tests