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 is a scope in javascript?
What is scope variable in javascript?
What is the use of a map object in javascript?
How can you detect the client operating system using javascript?
What is hoisting in javascript?
What is the scope of a function?
Is javascript object a hash table?
What are the datatypes in javascript?
What javascript method would convert the string “20” to an integer (on the fly) so “20” + 20 = 40?
What is callback in javascript?
Is dart better than javascript?
What are the ways to emit client-side javascript from server-side code in asp. Net?
How do you add an element at the end of an array?
Describe javascript and vbscript.
How to make elements invisible?