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

3
votes
3answers
123 views

What Internal Property In ECMAScript is defined for?

What the Internal Property in ECMAScript is defined for ? What does the spec mean by This specification uses various internal properties to define the semantics of object values.These internal ...
0
votes
2answers
722 views

How to upload image file into the SharePoint 2010 picture library using ECMA Script

I need to upload image file into the sharepoint 2010 picture library using java script... requirement is -- 1.we have File Upload control 2.And, we have to upload image file from that file upload ...
0
votes
2answers
136 views

Async Function in Getter w/ Return in Callback

I want to define a read-only object property that asynchronously fetches a value and then returns it using the new EcmaScript 5 getters. However, the property always returns undefined even though ...
3
votes
1answer
40 views

Relation between Ecmascript and the window object

I know that the window object is what the current browser has to offer as far as functionality is concerned. But how is Ecmascript related to this? How is it included in the browser, and how do I ...
2
votes
1answer
69 views

When browser start implementing JavaScript, how would one start using them while supporting browsers one or two versions older?

So let's pretend that Chrome and Firefox start supporting yield and other JavaScript.next niceties in their X and Y versions respectively. Are there any recommended strategies (set by W3C, for ...
2
votes
1answer
284 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
85 views

Currying Javascript function with custom order of fixed parameters

Currying functions can be usefull: function tag(name, value) { return '<' + name + '>' + value + '</' + name + '>'; } var strong = tag.bind(undefined, "strong"); strong("text"); // ...
1
vote
1answer
107 views

Partial inheritance - Share Primitive Values between Objects

I dindn't knew a better title, so to explain it, lets say you have a 'constructor' which Instantiates an Object and sets some properties In the process of Instatiation annother Object is created ...
1
vote
1answer
222 views

How to make a DOM handler enumerable in Safari?

I need to enumerate all the properties of my DOM elements which I previously modified. I could do it with Firefox, Chrome and Opera but I could not with Safari (I don't care about IE for the moment). ...
0
votes
1answer
34 views

Forcing Parameters on a function without declaring them

I did some research on this and i don't have much hope that this is possible, but maybe there is a JS Wizard amongst you that has an idea on how to solve this. I have a JS function like this: { ...
0
votes
1answer
136 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 ...
2
votes
0answers
138 views

Using ES5 shim with jquery/mootools/prototype

I stumbled across this project: https://github.com/termi/ES5-DOM-SHIM which provides almost full ES5 support in all browsers including old IEs. I've been using it in pure JS projects, but now I have ...
2
votes
0answers
158 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 ...
1
vote
0answers
108 views

Why svg imported by object tag are not all load in a HTML page?

I have an html page where I have to load many many svg (more than 1000). I load each svg with this line: <object type="image/svg+xml" data="89887295.svg">89887295 svg file ...
1
vote
0answers
455 views

Emulating pass by reference in JavaScript

All my unit tests have some common code I can run and abstract into a function. However I want to be able to re-use the Core value in every test function makeSuite(name, module, callback) { ...
0
votes
0answers
26 views

Except 2 arrays with objects and a dynamic predicate in javascript

This is what I have so far and I am new to prototyping and an average javascript programmer so please bear with me :) I am trying to get the difference from 2 arrays: function predicateId(element, ...
0
votes
0answers
46 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
0answers
45 views

Access ExchangeService using ECMAScript

I am having the following working code Microsoft.Exchange.WebServices.Data.ExchangeService _service = new ExchangeService();// (ExchangeVersion.Exchange2012); System.Net.NetworkCredential nc = null; ...
0
votes
0answers
14 views

blog or website that tracks browser ECMAScript-standards adherence vis-a-vis Time Of Day

The ECMAScript 262 Edition 5.1 Standards (2011) follow ISO 8601 5.3.2 on Time of Day values. See page 169, NOTE #1: As every day both starts and ends with midnight, the two notations 00:00 and ...
0
votes
0answers
82 views

ECMAScript 5.1 specification incorrect? Date constructor date/time format parsed as UTC

According to wikipedia's ISO-8601 article (I know, bad source)... If no UTC relation information is given with a time representation, the time is assumed to be in local time. So, for example.. ...
0
votes
0answers
132 views

ECMA script to search in list for current logged in user and filter another list

I have a requirement that i have to find the current logged in user and match it with the list items present in a list and obtain a result value from it. Then i have to filter another list with the ...
0
votes
0answers
125 views

stacktrace of a bound function

What happens to the stacktrace when you call .bind() on a javascript function? For example, when I have Function.prototype.arg = function() { var fn = this; return function augmented(){ ...