ECMAScript is the Name of the Ecma International Standard 262. It bases on the scripting language JavaScript which was delivered by Netscape to Ecma for standardization. The 5th Edition is an update of the 3rd edition specification after the cancellation of the 4th edition. It adds new features ...

learn more… | top users | synonyms

1
vote
1answer
243 views

Object.create and inheritance

What is the difference between the resulting objects in the following examples: var EventEmitter = require('events').EventEmitter; var oProto = Object.create(EventEmitter.prototype); var oProto2 = ...
0
votes
1answer
134 views

Object tree traversal - afl for app memory leak detection

I am trying to traverse object tree in AFL (adobe flash lite) engine, to check if there are memory leaks in an event driven application (AS3). The idea is to get object tree dump before and after an ...
0
votes
1answer
179 views

Correct callbacks and references for a PhoneGap-App

I want to create a PhoneGap-Application with multiple database tables that will be parsed into Javascript-Objects, so I wrote the following code. $(document).ready( function(){ var ...
4
votes
1answer
703 views

Polyfill or workarounds for ECMAScript5 new features?

I want to write my JS code with the new ECMAScript5 features that working today and in the future. As not all browsers support all the features (especially IE) such as Object.create, Array.isArray ...
2
votes
3answers
202 views

List of areas missing support for ECMAScript/JavaScript in major browsers?

Is anyone aware of a definitive list of areas of missing support for ECMAScript/JavaScript in the major browsers (I'm talking IE7+, Firefox, Chrome, Safari and Opera). Obviously we do feature ...
3
votes
2answers
393 views

ECMAScript5 deep copy of object and arrays

I'd hope to find an example code to do a deep copying of objects in ECMAScript5. The copying should be able to clone Nested objects Nested arrays Nested objects in arrays (clone each array item ...
3
votes
4answers
347 views

What is an ECMAScript “native object”?

According to the ECMA-262 a native object object in an ECMAScript implementation whose semantics are fully defined by this specification rather than by the host environment A built-in object ...
1
vote
3answers
2k views

Math.cos(Math.PI/2) returns 6.123031769111886e-17 in JavaScript & AS3?

If I'm understanding this correct, both JavaScript and ActionScript 3 works with radians. So the expected output of the following codes would be: Math.PI //Expected ...
2
votes
0answers
154 views

Generate JSON to Convert into ECMAScript 5 Ready Consumption

In my client/server web app, I am generating large JSON strings (using JSON.NET JToken classes in C# web services) which I pass via AJAX Get requests to the client. I would like to be able to define ...
3
votes
1answer
202 views

Object.keys() complexity?

Anyone know the time-complexity of ECMAScript5's Object.keys() in common implementations? Is it O(n) for n keys? Is time proportional to the size of the hash table, assuming a hash implementation? ...
5
votes
3answers
265 views

Is there a JavaScript project that normalizes ECMAScript 5

Is there a JavaScript project anywhere that focuses on native normalization ECMAScript 5 in common browsers? For reference, normalizing a table like this: http://kangax.github.com/es5-compat-table/ ...
-2
votes
4answers
399 views

JavaScript return value [closed]

I'm learning JavaScript as my first language and I'm getting the idea here as far as functions go but I don't understand what the point of the return value at the end is. What is it used for?
3
votes
2answers
464 views

Full range of JavaScript Date objects?

I'm reading info on the mix/max values of JavaScript date objects in various implementations. Mozilla docs say JavaScript supports "-100,000,000 days to +100,000,000 on either side" of the UNIX ...
0
votes
1answer
335 views

Get ECMAScript 5 Intellisense in Visual Studio

Are there any known solutions to supporting ECMA 5 features in Visual Studio's Intellisense? For example, it would be nice to have Object.create() and Object.defineProperty() as well as all of the ...
1
vote
3answers
196 views

Is message property on Error propertyIsEnumerable?

What is the correct result of the following? Do any of the ECMA standards specify this? My current Chrome 14.0.835.186m thinks false and Firefox 3.6.22 thinks true. (new ...
2
votes
1answer
277 views

use defineProperty from a module

Let's say in my module I have something like this : Object.defineProperty(Array.prototype, 'sayHello', {get: function(){ return "hello I'm an array" }); Now I would like to ...
1
vote
1answer
1k views

Iterate string lines in NodeJS

I get a buffer (and I can make it a string) from child_process.exec() in NodeJS. I need to iterate over the lines of the output string. How would I do this?
4
votes
1answer
308 views

Haven't ECMA5 (recent JavaScript) any built-in function for copying objects?

I need something like Ext.apply in Node.js. The most obvious way is to define my own: function simplestApply(dst, src1) { for (var key in src) if (src.hasOwnProperty(key)) ...
1
vote
2answers
124 views

Accessing a folder to list/play clips one by one

I just want to know if there is an object to access a folder path which includes list of clips in javascript. Which object I should use to list clips in a folder? Actually I can't use all objects, ...
5
votes
1answer
778 views

Advantage of using Object.create

Similar to, but different from this question. The code below is from JavaScript: The Definitive Guide. He's basically defining an inherit method that defers to Object.create if it exists, otherwise ...
0
votes
1answer
408 views

How to play multiple files in a folder with VoiceXML?

For a specific project, I am trying to write a voicexml file to play out some audio files. I have no problem about playing an file. But I need some directions for playing multiple files in a folder. I ...
2
votes
2answers
136 views

Can the effect of Object.freeze be reversed in ES5?

Once I do this: var x = { }; Object.freeze( x ); Is there any way to modify x? Thanks.
5
votes
3answers
1k views

javascript “use strict” and Nick's find global function

So I saw a function that was, quite frankly beautiful in its simplicity as it allowed you to find the global object ( which depending on environ at the time may NOT have been window ) while within an ...
12
votes
1answer
7k views

Function.prototype.bind

I've got pretty interesting question about EcmaScript-5 Function.prototype.bind implementation. Usually when you use bind, you do it this way: var myFunction = function() { alert(this); ...
4
votes
3answers
208 views

Why does Function.bind(“foo”).call(“bar”) always refer this to “foo”?

I just experienced a behavior in JS which I couldn't understand: I wanted to create a method which calls String.prototype.replace with some args given, therefore I came up with that: ...
15
votes
4answers
695 views

null vs. undefined and their behaviour in JavaScript

So after a big argument/debate/discussion on the implementation of null and undefined in javascript I'd like somebody to explain the reasoning behind the implementation and why they differ in some ...
2
votes
3answers
3k views

JavaScript (ECMAScript 5) Tutorial

I hear that ECMAScript 5 is now getting supported by most of the latest browsers. Are there any good tutorials out there? I tried looking myself but I didn't find anything. Is the ES5 documentation ...
2
votes
1answer
95 views

How to get completely accurate values in JavaScript? [duplicate]

Possible Duplicate: Huge Integer JavaScript Library Suppose I want the exact value for 2^1000. How am I supposed to get the entire value? Maybe storing it in a string every time the ...
1
vote
1answer
367 views

Javascript - getOwnPropertyDescriptor & defineProperty on DOM prototype elements

I am trying to capture read/write operations on any IMG tag's "src" attribute. For that purpose I was trying to use the getOwnPropertyDescriptor & defineProperty functions on the HTMLImageElement ...
7
votes
3answers
2k views

Extending Object.prototype JavaScript

I am not asking if this is okay. Object.prototype.method = function(){}; This is deemed evil by pretty much everyone, considering it messes up for(var i in obj). The Real Question Ignoring ...
4
votes
2answers
983 views

Is there any reason to use Object.create() or new in JavaScript?

I've been using the new keyword in JavaScript so far. I have been reading about Object.create and I wonder if I should use it instead. What I don't quite get is that I often need to run construction ...
1
vote
1answer
720 views

Chrome javascript bind function inconsistency

If I browse to about:blank, open the script console and type the following: var x = function() { console.info(this.toString() + ' -- ' + arguments.length.toString()); }; x.bind; The response ...
0
votes
1answer
148 views

should we just forget about the properties in ECMAScript 5 [closed]

what is the whole point in using those "properties" that ECMAScript 5 provides? Ok let's not penalize ECMAScript 5 with the famous "old browser support" phrase. Even for modern browsers which ...
25
votes
8answers
1k views

(Open Source) Examples of JavaScript Prototypical OO

Bounty Edit: I'm looking for code written in a pure prototypical OO paradigm (think Self). Not a mixture of prototypical OO and classical OO. I don't want to see generic OO wrappers but simply usage ...
37
votes
4answers
4k views

Prototypical OO in JavaScript

TL;DR: Do we need factories/constructors in prototypical OO? Can we make a paradigm switch and drop them completely? The BackStory: I've been toying with doing prototypical OO in JavaScript lately ...
27
votes
5answers
2k views

Why is new slow?

The benchmark: JsPerf The invariants: var f = function() { }; var g = function() { return this; } The tests: Below in order of expected speed new f; g.call(Object.create(Object.prototype)); ...
1
vote
1answer
702 views

Object.defineProperty(obj, “prop”, desc) behaving strangely

If I define an object and set its configurable property to false, but leave all other props alone, and later attempt to set that object's writable prop to false, then back to true, a TypeError is ...
2
votes
1answer
2k views

Does Object.keys() work in Internet Explorer 9 for built-in objects?

The Object.keys() method works fine for me with code like this: var foo = {foo: 1, bar: 2}; console.log(Object.keys(foo).length); However, Object.keys() returns a zero-length array for built-in ...
7
votes
1answer
532 views

Object.create vs direct prototypical inheritance

I have been playing around with Object.create in the EcmaScript 5 spec, and I am trying to create a multiple inheritance type structure. Say I have a few functions: a, b, and c. With only dealing ...
0
votes
2answers
269 views

Object.preventExtensions actually allows mutation of __proto__?

I was browsing MDC about new functions added to Object. One of them, Object.preventExtensions, is said to prevent mutations to the object's prototype, which can be obtained by using ...
14
votes
5answers
7k views

how to stop Javascript forEach?

i'm playing with nodejs and mongoose — trying to find specific comment in deep comments nesting with recursive func and foreach within. Is there a way to stop nodejs forEach? As i understand every ...
3
votes
1answer
222 views

Understanding ECMAScript implicit semicolons and whitespace parsing

I've seen, very often in fact, this cited as why to use K&R style when writing ECMAScript. function foo () { return { foo: 1 } ; } That doesn't work in ECMAScript or ...
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( ...
1
vote
1answer
254 views

variable.Property = “test” vs Object.defineProperty(variable,“Property”)

If I want to give a variable a a property P (non-accessor property) and I do not care if it's configurable/enumerable/writable. I can be 100% sure it is in fact more beneficial (in all ways you can ...
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), ...
2
votes
1answer
145 views

EcmaScript5 features

I have a fair knowledge of ES3, but I'm not really up to date about the features of ES5. I - more or less - know about: Object.create(), Object.freeze() "use strict" getters and setters the methods ...
2
votes
2answers
157 views

Make a simple search algorithm more elegant

// temp data var array = [1,2,function() { }, 3, function() { }]; var cb = function() { console.log("foo"); } var found = false; console.log(_.map(array, function(val) { if (_.isFunction(val) ...
4
votes
1answer
429 views

JavaScript: Strict mode and anonymous functions

Nearly all my JS files are wrapped in anonymous functions. If I include "use strict"; outside the anonymous function, is strict mode still applied to the anonymous function? For example, is strict ...
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 ...
2
votes
1answer
1k views

Javascript get and set availability in browsers

Which browsers do not support the get and set methods for object prototypes? I believe this is a feature of ES5, an I know it works in Chrome, but I am wondering if it is safe to use for ajax apps. ...