Q. Which one of the following codes is correct for concatenating the strings passed into the function?
β
Correct Answer: (B)
functionconcatenate() { returnString.prototype.concat.apply('', arguments); }
You must be Logged in to update hint/solution