Write a JavaScript function which can take any number of
strings as arguments and outputs them as a single
concatenated string.
Answer Posted / szilveszter safar
function concatStrings () {
return Array.prototype.join.call(arguments, '');
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are JavaScript Cookies?
What is the difference between rootscope and scope?
What Is The Disadvantages Using InnerHTML In JavaScript?
Is Javascript a Functional Programming Language?
What is the most widely used programming language?
Is JavaScript a true OOP language?
How will you create new object in javascript?
Are javascript variables case sensitive?
What is the most popular javascript library?
What is escape & unescape String functions in JavaScript?
What is a good javascript editor?
Describe what u had done today?
How can you get the total number of arguments passed to a function?
Is a parabola a function?
What is a name function in javascript?