• support@answerspoint.in

What is the function of the var keyword and when to use it (or omit it)?

23
Advertisement

What exactly is the function of the var keyword in Javascript, and what is the difference between:

var someNumber = 2;
var someFunction = function() { doSomething; }
var someObject = { }
var someObject.someProperty = 5;

and:

someNumber = 2;
someFunction = function() { doSomething; }
someObject = { }
someObject.someProperty = 5;

When would you use either one, and why/what does it do?

0Answer


Your Answer

    Facebook Share        
       
  • publish 10 years ago
  • viewed 23 times
  • active 10 years ago

Best Rated Questions