Hi All!
This is my small html with javascript.
can any one explain me this javascript functionality and
what is var name={};
Is it a Array???
<html>
<head>
<title> global variable</title>
<script>
var name={};
function A(){
name.value="Arun";
enable();
}
function B(){
name.value="Karthik";
enable();
}
function enable(){
var value=name.value;
alert(value); // onclicking First Button its answer is Arun , onclicking Second Button its answer is Karthik.
}
</script>
<body>
<input type="button" value="First" onClick="A()"/>
<input type="button" value="Second" onClick="B()"/>
</body>
</html>
thanks