Answer Posted / 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 |
Post New Answer View All Answers
How much does a javascript developer make?
Can I open javascript on iphone?
How to delete a cookie using javascript?
Name some of the built-in methods and the values returned by them.
How do I open javascript on my iphone?
Does javascript have the concept level scope?
What is the use of isNaN function?
What are the seven data types of javascript?
What are the scopes of a variable in javascript?
What is the difference between ‘var’ and ‘let’ keyword?
How we can get the value of an element using javascript?
Does apple use javascript?
Explain javascript event delegation model?
How do you check if a string is a number javascript?
how to validate the date(dd/mm/yyyy)using regular expression in javascript? It should also satisfy the leap year feb 29 problem. Please help me.