Tagged Questions
1
vote
2answers
24 views
How does the ECMA Script 5 spec allow successful parses for hex ints greater than 0xFF?
In EMCA262 version 5.1 the definition of a hexadecimal integer literal is: (document page 20, PDF page 32)
HexIntegerLiteral ::
0xHexDigit
...
0
votes
1answer
16 views
how to generate a vxml tag through adynamic ecma/javascript expression
I am having issues with the following scenario:
my vxml has the following snippet:
<block>
<script src="myscript.es"/>
<audio> <value expr="temp()"/> </audio>
...
0
votes
0answers
39 views
enumeration order guarantee
On my EcmaScript spec. wishlist the first in order of importance is the guaranteed order of enumeration in for-in loops.
A bunch of very smart people vote for for-in enumeration order guarantee ...
0
votes
1answer
67 views
argumental reference inconsistency in javascript
I have recently encountered a nasty issue in JS.
Let say we pass a map, an array of objects to a function f.
var o=[{a:0}];
function f(a){
for(var i in a){
if (a.hasOwnProperty(i)){
...
1
vote
3answers
51 views
In JavaScript, will any standalone inner function treat “this” as the object on which the original method was invoked on?
In the book JavaScript Enlightenment (the link is to a pre-published version (page 85), but I have the published version (Chapter 6.3) and it says the same thing), it says that any inner function will ...
5
votes
2answers
308 views
Why are anonymous function expressions and named function expressions initialized so differently?
I'm looking at section 13 or the ECMAScript specification (v. 5). An anonymous function expression is initialized as follows:
Return the result of creating a new Function object as specified in ...
2
votes
2answers
34 views
Details about what happens when entering a function declared in the global scope is missing from ECMAScript Specification v5?
The ECMAScript specification goes into detail about what happens when control enters the execution context of a function within a function.
function foo() {
function bar() {
}
bar(); // ...
2
votes
1answer
74 views
JavaScript Closures - Using the ECMA Spec, please explain how the closure is created and maintained
I'm reading about JavaScript closures. I'm familiar with Execution Contexts, how the Lexical Environment is maintained, and very familiar with Lexical Scoping.
I want to know how closures in ...
2
votes
2answers
37 views
Are all function declarations & expressions created by called new Function() behind the scenes?
I'm reading the portion of ECMA 262 v5 script that speaks of Function definitions. For both function declarations and function expressions, the following is mentioned:
Return the result of ...
1
vote
1answer
64 views
Does Eval really introduce dynamic scoping to JavaScript?
People say that Eval brings dynamic scope into JavaScript, but I don't see how that statement is valid. Using Eval evaluates the expression using the same lexical environment/variable environment as ...
4
votes
3answers
67 views
Does a function expression have its own scope/lexical environment
I'm reading the Execution Context / Lexical Environment section of the ECMA 262 5 specification. It states the following: (emphasis added)
A Lexical Environment is a specification type used to ...
2
votes
2answers
51 views
Clarity on the difference between “LexicalEnvironment” and “VariableEnvironment” in ECMAScript/JavaScript
Could someone clarify what the difference is between these two, as they exist in the Execution context? It's hard for me to read the ECMA 262 v 5 specification and clearly see the difference.
Thank ...
8
votes
2answers
201 views
Is there an i18n (Intl) shim for JavaScript?
I am looking for a shim for the ECMAScript Internationalization API. Does anyone know of such a project? (Even if it's still currently a work-in-progress.)
3
votes
1answer
218 views
Math.pow with negative numbers and non-integer powers
The ECMAScript specification for Math.pow has the following peculiar rule:
If x < 0 and x is finite and y is finite and y is not an integer, the result is NaN.
...
1
vote
3answers
105 views
Writing ECMAScript5 compliant code (Part 2)
I am currently learning advanced JavaScript, with an aim to build a standards compliant (HTML5, CSS3, ESv5) library. Along my way I have already asked a couple of related questions to try and figure ...
7
votes
3answers
492 views
Is there any way to check if strict mode is enforced?
Is there anyway to check if strict mode 'use strict' is enforced , and we want to execute different code for strict mode and other code for non-strict mode.
Looking for function like ...
7
votes
2answers
520 views
Getting a reference to the global object in an unknown environment in strict mode
What is the recommended way to get a handle to the global object in ES5 strict mode in an unknown host environment?
ECMAScript doesn't provide a built-in way to reference the global object that I'm ...
4
votes
2answers
305 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( ...
12
votes
1answer
2k 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), ...
9
votes
3answers
2k 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 ...
5
votes
3answers
843 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 ...
5
votes
2answers
727 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 ...
8
votes
3answers
3k 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.
...
1
vote
2answers
208 views
How to run javascript in ECMA 5th edition strict mode? [duplicate]
Possible Duplicate:
Javascript: “use strict”
Is there any way to know how and which browsers support it?
11
votes
2answers
2k 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...
...
29
votes
2answers
6k 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 ...
4
votes
1answer
184 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 ...
32
votes
4answers
5k 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 ...
8
votes
6answers
1k 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?


