Write a JavaScript function which can take any number of
strings as arguments and outputs them as a single
concatenated string.
Answer Posted / ashok
<script type="text/javascript">
var a="i am ashok choudhary!";
var b="i belongs to jaipir.";
document.write(a+b);
</script>
Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What does => mean in node js?
Is it possible to use javascript to change the meta-tags of the page?
What is difference between promise and callback?
What is enum in javascript?
What are arrays in javascript?
How long does it take to learn coding?
What is the best ide for javascript development?
How do I write script-generated content to another window?
What is namespacing in javascript and how is it used?
What is the Infinity property used for in Javascript?
List some data types supported by javascript?
What are different types of scope chain available in javascript?
Explain unescape() and escape() in javascript?
What is context in javascript?
How to access an external javascript file that is stored externally and not embedded?