Tagged Questions
The javascript-keywords tag has no wiki summary.
105
votes
9answers
12k views
Difference between using var and not using var in JavaScript
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 ...
4
votes
3answers
147 views
Why 'NaN' and 'Undefined' are not reserved keywords in Javascript?
We can do:
NaN = 'foo'
as well as
undefined = 'foo'
Why they are not reserved keywords?
Edit 1 (DownVoters):
I think it should be implemented in order to be sure that when we are looking ...
1
vote
2answers
128 views
JavaScript: firefox refuses the class keyword while chrome doesn't
I was trying this JavaScript piece of code:
class User(name) {
this.name = name;
}
var class = new User("Kimo");
The above was used as is in a JavaScript book, and I was simply playing with ...
0
votes
1answer
214 views
What is the `name` keyword in JavaScript?
When I typed this apparently innocent snippet of code:
values.name
gedit highlighted name as a keyword. However, name is not listed by the pages linked to by an answer to a question about reserved ...