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
How you will add function as a property in a javascript object? Give an example.
What is event target in javascript?
Explain the difference between call() and apply()?
What is "this"?
What is a Typed Language?
How to you change the title of the page by javascript?
What is noscript tag?
What does dynamic component in javascript contain?
Is javascript necessary?
What is difference between ajax and javascript?
How do you organize your JavaScript code?
What is difference between callback and promise?
Who is the world famous hacker?
How to access the value of a textbox using javascript?
How to loop through array in javascript?