program showing string concatenation?
Answers were Sorted based on User's Feedback
Answer / rajeshwar
Hi,
I think the above answer will not work for java script as
per my knowledged.
$variable_name are used in php but not in javascript. To
acheive the requirement in java just remove $ symbols.
var a="hello";
var b="world";
var concat= a+b; alert(concat);
| Is This Answer Correct ? | 10 Yes | 1 No |
Answer / prasadkonnur
HI Rajeshwar,
you are right. $variable work in php. not in javascript.
var a="hello";
var b="world";
var concat= a+b;
document.writeln(concat);
| Is This Answer Correct ? | 5 Yes | 0 No |
Answer / vinoth180
var a="hello"
var b="JavaScript"
document.write(a+b);
Try this one...their is no need for the third for calculation
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / prasadkonnur
var a="hello";
var b="world";
var concat= $a+$b;
| Is This Answer Correct ? | 4 Yes | 7 No |
What is the data type of variables of in javascript?
What is the main difference between Map collections and other collections such as Set.
What is output of “20” + 20 + 20 and “20” + ( 20 + 20)? In javascript?
write a program using javascript/ vbscript that checks if two matrices have identical values in all the elements.
What does parse Query String return in javascript?
What are the javascript data types?
Can you assign an anonymous function to a variable?
What is the difference between HTMLCollection and NodeList?
What is differential inheritance?
What does the attribute defer/async do when added to the script tag?
What are parameters in javascript?
How can I learn coding fast?