Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

75
votes
5answers
22k views

Why was the arguments.callee.caller property deprecated in JavaScript?

Why was the arguments.callee.caller property deprecated in JavaScript? It was added and then deprecated in JavaScript, but it was omitted altogether by ECMAScript. Some browser (Mozilla, IE) have ...
26
votes
3answers
586 views

Is JavaScript's double equals (==) symmetric?

There are many cases in which JavaScript's type-coercing equality operator is not transitive. (See, for instance, JavaScript equality transitivity is weird....) But are there any cases in which it ...
24
votes
4answers
3k views

Which (javascript) environments support ECMAscript 5 strict mode? (aka “use strict”)

ECMAScript 5 is in its final draft as I write this; It is due to include a strict mode which will prevent you from assigning to the global object, using eval, and other restrictions. (John Resig's ...
21
votes
11answers
2k views

Why is there no OFFICIAL JavaScript reference?

I tried to search for a JavaScript reference, but there's none available. The best two suggested sources are MDC and W3Schools. Why?
20
votes
7answers
290 views

JavaScript types

As per http://www.ecma-international.org/publications/files/ECMA-ST/ECMA-262.pdf, JavaScript has 6 types: undefined, null, boolean, string, number and object. var und; console.log(typeof und); // ...
20
votes
2answers
3k views

EcmaScript 5 browser implementation

So Safari and Chrome have started in their betas to implement some ES5 stuff. For instance Object.create is in them. Do any of you know if there is a website that shows the progress made in the ...
16
votes
6answers
4k views

Are there any .NET CLR/DLR implementations of ECMAScript?

Does anyone know of real (i.. no vaporware) implementations of ECMAScript targeting the .NET CLR/DLR? Ideally something like what Rhino is for Java. A solid port of Rhino running on .NET Framework / ...
13
votes
4answers
2k views

JSON left out Infinity and NaN; JSON status in ECMAScript?

Any idea why JSON left out NaN and +/- Infinity? It puts Javascript in the strange situation where objects that would otherwise be serializable, are not, if they contain NaN or +/- infinity values. ...
12
votes
5answers
446 views

Is ECMAScript really a dialect of Lisp?

A friend of mine drew my attention the welcome message of 4th European Lisp Symposium: ... implementation and application of any of the Lisp dialects, including Common Lisp, Scheme, Emacs ...
11
votes
2answers
800 views

Javascript IN operator compatibility

Can someone tell me since which ECMA version the IN operator is available and which browsers (versions) support it ? Explanation: The IN-operator can be used like the following: var myObject = { ...
11
votes
7answers
1k views

Why is there a large difference in readability between the C# and ECMAScript specifications?

I have been studying the ECMAScript specification and have found that it is extremely hard to read and understand. I constantly have to backtrack to keep concepts in my head. When reading the C# ...
11
votes
8answers
2k views

What is the difference between JavaScript and ECMAScript?

I was just reading John Resig's ECMAScript 5 post. From what I can work out, ECMAScript is the standard and JavaScript is the implementation. Is this correct?
10
votes
3answers
2k views

Relation between [[Prototype]] and prototype in JavaScript

From http://www.jibbering.com/faq/faq_notes/closures.html : Note: ECMAScript defines an internal [[prototype]] property of the internal Object type. This property is not directly accessible with ...
9
votes
2answers
780 views

IDE for ECMAScript-262 with in IDE execution / debugging for node.js/V8

I currently use Eclipse as my IDE for other languages and I'm rather used to not having to leave the IDE for anything - however I'm really struggling to find the same or a similar setup for pure ...
8
votes
1answer
255 views

Why does `typeof this` return “object”?

var f = function(o){ return this+":"+o+"::"+(typeof this)+":"+(typeof o) }; f.call( "2", "2" ); // "2:2::object:string" var f = function(o){ return this+":"+(typeof this)+":"+(typeof o); }; var x = ...
8
votes
6answers
709 views

How will Ecma-262 (EcmaScript 5) help you?

EcmaScript Fifth Edition, or Ecma-262, has been announced and contains some changes to the language. What features in the new version are going to help you write better code?
7
votes
4answers
213 views

Is there an environment-agnostic way to detect Javascript Host Objects?

I'm after an environment-agnostic way to determine if a particular object in Javascript is a host object (see ECMAScript 3 - 4.3.8). So far I've only been able to come up with solutions that depend ...
7
votes
1answer
300 views

What's a valid left-hand-side expression in JavaScript grammar?

Okay, we all know what the valid left-hand-side expressions are. Kind of.* But, looking at the definition from the ECMA-Script standard, I'm very confused: LeftHandSideExpression : NewExpression ...
7
votes
5answers
1k views

Why does “dtoa.c” contain so much code?

I'll be the first to admit that my overall knowledge of low level programming is a bit sparse. I understand many of the core concepts but I do not use them on a regular basis. That being said I was ...
7
votes
6answers
985 views

What is the scope of a function in Javascript/ECMAScript?

Today I had a discussion with a colleague about nested functions in Javascript: function a() { function b() { alert('boo') } var c = 'Bound to local call object.' d = 'Bound to ...
6
votes
2answers
1k views

EBNF for ECMAScript?

I'm trying to find a good EBNF description of ECMAScript, but so far I've not found anything complete. Any ideas?
5
votes
1answer
575 views

When will v8 implement ECMAScript 5?

I noticed that v8 is rather mute on the issue of ECMAScript 5th edition. V8 implements ECMAScript as specified in ECMA-262, 3rd edition, and runs on Windows XP and Vista, Mac OS X 10.5 (Leopard), ...
5
votes
3answers
242 views

Indirect function call in JavaScript

There are things like f.call(...) f.apply(...) But then there's this (1, alert)('Zomg what is this????!!!11') "1" does not seem to mean much in this context, the following works just fine: ...
5
votes
1answer
384 views

How to make sure ES3 programs will run in an ES5 engine?

So ECMAScript 5 introduces some incompatibilities with ECMAScript 3. Example: Many articles have been written stating that this === null || this === undefined is possible in ES5 strict mode: "use ...
5
votes
4answers
489 views

ECMA- / Javascripts Array.prototype.forEach

Javascript (ECMAscript) supports the Array.prototype.forEach method since version 1.6 (ECMAscript edition 3, 2005). So quite a lot of browser already support that method and it's incredibly fast in ...
5
votes
1answer
135 views

How can I improve the recursion capabilities of my ECMAScript implementation?

After some resent tests I have found my implementation cannot handle very much recursion. Although after I ran a few tests in Firefox I found that this may be more common than I originally thought. I ...
5
votes
2answers
346 views

Why were namespaces removed from ECMAScript consideration?

Namespaces were once a consideration for ECMAScript (the old ECMAScript 4) but were taken out. As Brendan Eich says in this message: One of the use-cases for namespaces in ES4 was early binding ...
5
votes
2answers
874 views

In ECMAScript5, what's the scope of “use strict”?

What scope does the strict mode pragma have in ECMAScript5? "use strict"; I'd like to do this (mainly because JSLint doesn't complain about it): "use strict"; (function () { // my stuff here... ...
4
votes
1answer
133 views

Why is ECMAScript still not a recommendation of W3C?

In theory browsers could support several programming languages for client-side scripting of web pages. In practice, ECMAScript is the only one widely implemented and used in all browsers. So for most ...
4
votes
4answers
239 views

Why was ECMAScript 4th edition completely scrapped?

I've been looking for some information regarding the scrapped ECMAScript 4th Edition without much success, even on SO. I know Mozilla's JavaScript 1.7 implemented many (all?) of the new features ...
3
votes
0answers
120 views

QtScript instanceof with custom class throws prototype-related error

I have a Qt project which uses the QtScript module to make some components of my application scriptable. After several attempts at making the existing classes directly usable in QtScript, I chose to ...
3
votes
2answers
66 views

Which ECMA-262 (ECMAScript/JavaScript) reference should I use?

The more I read JavaScript Q&A, the more I come across references to the ECMA-262 sleeping medication reference. I've seen some as HTML in addition to the official pdf. I'd like to link to the ...
3
votes
2answers
221 views

Differences between regular expressions in Java and ECMA-262 (AS, JS)

I need to convert Java regular expressions into Actionscript regular expressions. There apparently aren't any premade converters, so I'm trying to write one myself. Is there any resource that'd list ...
3
votes
3answers
542 views

Can I disable ECMAscript strict mode for specific functions?

I don't find anything about my question here on MDC or the ECMAscript specifications. Probably somebody knows a more 'hacky' way to solve this. I'm calling "use strict" on every javascript file in my ...
3
votes
2answers
147 views

Rhino features beyond the ECMA standard?

I'm starting with JavaScript and the Rhino engine. I know the ECMAScript 262 specification. I need to know what features, e.g. functions/objects/etc are defined by the Rhino JavaScript engine beyond ...
3
votes
3answers
1k views

Object.defineProperty in ES5?

I'm seeing posts about a 'new' Object.create that makes enumeration configurable. However, it relies on a Object.defineProperty method. I can't find a cross browser implementation for this method. ...
3
votes
2answers
180 views

What is the name of this technique?

I just finished writing a date parser for my ECMAScript implementation. Previously I had written a regular expressions compiler and I was really impressed with the way the spec described the process. ...
3
votes
4answers
115 views

Many names of JavaScript / ECMA

I was looking up newer functions of JavaScript and found ECMAScript/ECMA 5. Because I had never heard of it I looked in to it more and found that it comes in the form of different names such as: ...
3
votes
1answer
473 views

JavaScript date constructor and timezone

The Date constructor in JavaScript/ECMAScript/JScript allows passing the number of milliseconds since midnight, 1/1/1970. Nowhere can I find documentation whether this is midnight in the client ...
3
votes
9answers
465 views
3
votes
1answer
155 views

Possible typos in ECMAScript 5 specification?

Does anybody know why, at the end of section 7.6 of the ECMA-262, 5th Edition specification, the nonterminals UnicodeLetter, UnicodeCombiningMark, UnicodeDigit, UnicodeconnectorPunctuation, and ...
3
votes
2answers
515 views

ANTLR parser hanging at proxy.handshake call

I am attempting to get a basic ECMAScript parser working, and found a complete ANTLR grammar for ECMAScript 3, which appears to compile ok and produces the appropriate Lexer/Parser/Walker Java files. ...
3
votes
2answers
255 views

Does a real ECMAScript implementation exist, or is it just a spec?

I read both of the links below http://en.wikipedia.org/wiki/ECMAScript http://stackoverflow.com/questions/912479/what-is-the-difference-between-javascript-and-ecmascript My question is, does ...
2
votes
1answer
100 views

Activation and Variable Object in JavaScript?

Is the term "activation object" just another name of "variable object" or is there actually any difference between them? I have been reading a few JavaScript articles about how variable scopes are ...
2
votes
1answer
105 views

JavaScript Object property lookup - does syntax matter?

This is a basic question about the JavaScript (ECMAScript) language so I apologize in advance if it's a duplicate (a little searching didn't reveal my exact question). In ECMAScript we can use two ...
2
votes
2answers
132 views

ECMAScript Associative Array via Object w/ prototype null?

I see a lot of people doing this Object.prototype.foo = 'HALLO'; var hash = {baz: 'quuz'}; for ( var v in hash ) { // Do not print property `foo` if ( hash.hasOwnProperty(v) ) { console.log( ...
2
votes
3answers
245 views

JavaScript: Can ECMAScript 5's Strict Mode (“use strict”) be enabled using single quotes ('use strict')?

JavaScript doesn't care if your Strings are double-quoted "double" or single-quoted 'single'. Every example of ECMAScript 5's strict mode has it enabled by "use strict" in double-quotes. Can I do the ...
2
votes
2answers
104 views

Precedence of function object expression in ECMAScript

In order to implement a tiny compiler that emits ECMAScript I need to know how strong a function object expression binds, i.e. what is the precedence of the "operator" function(a1, a2, ...) { ... }? ...
2
votes
1answer
191 views

How is a NullLiteral represented in tree form?

According to the ECMAScript specification in section 7.8.1 a NullLiteral is defined as follows: NullLiteral :: null What I am trying to understand is how this is represented in tree form when ...
2
votes
1answer
81 views

How can I effectively test a scripting engine?

I have been working on an ECMAScript implementation and I am currently working on polishing up the project. As a part of this, I have been writing tests like the following: [TestMethod] public void ...

1 2