Write a JavaScript function which can take any number of
strings as arguments and outputs them as a single
concatenated string.
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / szilveszter safar
function concatStrings () {
return Array.prototype.join.call(arguments, '');
}
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / madhav arora
Lets Declare two variables :"a" and "b" to solve this
problem :
var a = 'Hello world!';
var b = 'I am a JavaScript hacker.'
First of all, you can concatenate strings, sew them
together as it were:
document.write(a + b);
gives
Hello world!I am a JavaScript hacker
| Is This Answer Correct ? | 4 Yes | 5 No |
Answer / upendar
<script type="text/javascript">
var concatString= "";
function concatArgs() {
var argsLength = arguments.length;
for(var i=0; i<argsLength; i++) {
concatString = concatString + arguments[i];
}
}
document.write(concatString);
</script>
| Is This Answer Correct ? | 0 Yes | 1 No |
What is the role of break and continue statements?
How to open url in a new tab in javascript?
How long does it take to learn coding?
How to manage exception handling in javascript?
How do you check if an object is an array or not?
Is notepad ++ an ide?
hi i want validations for two dropdown lists in java script.when user enter to second dropdown list by skipping first dropdown list we should get alert box. please help me very urgent
What is the difference between childNode and children?
How do I view javascript files in chrome?
How will you get the checkbox status whether it is checked or not?
What is an onclick?
Describe the properties of an anonymous function in JavaScript?