Q. The one-liner code that concatenates all strings passed into a function is
β
Correct Answer: (A)
function concatenate() { return String.concat.apply('', arguments); }
You must be Logged in to update hint/solution