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 screen objects?
What does a typeof operator do?
Which is best for front end?
Why is object naming important to use in javascript?
How do you know if a set of points is a function?
Why is it called javascript?
What is the use of a map object in javascript?
What is let keyword in typescript?
Explain few difference between null, undefined or undeclared javascript variable?
How to get value from radiobuttonlist control?
Where are cookies actually stored on the hard disk?
What's math constants and functions using javascript?
What is the real name of JavaScript?
Public Static Void Main(String args[]) { System.out.in("Hai.."); } In the above code why string args[] is required.... If we are not giving command line argument..
What are the Advantages and Disadvantages of JavaScript?