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 ...
3
votes
2answers
122 views
Why does Array.prototype.reduce not have a thisObject parameter?
Javascript Array methods such as forEach have a thisArg parameter, which is used as the context for invoking the callback:
array.forEach(callback[, thisArg])
as do every, some, filter and map. ...
8
votes
2answers
203 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.)
0
votes
1answer
70 views
How can I alert supported EcmaScript version of the browser?
Is there a way to alert the supported EcmaScript version of the current environment where I run my JavaScript?
0
votes
1answer
27 views
Is it possible to test a Javascript code for different Ecma script editions?
what I want to achieve is to test a piece of javascript code I have to see how it behaves on different versions of Ecmascript.
Can I switch between versions in some kind of tool and test the code and ...
1
vote
1answer
105 views
Assignment operator overloading in TypeScript
I am writing a set of TypeScript classes that use inheritance to maintain a "Type" hierarchy (for want of a better phrase).
Say for example I have a base class...
class Parent {
}
and then I ...
0
votes
2answers
47 views
Getting delta of array values from constantly updating array
Having a problem getting something which should be rather simple to work.
I am constantly updating an array with new values and as I do so I need to get the delta or difference between the lowest and ...
0
votes
0answers
13 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 ...
1
vote
2answers
98 views
PyQt QWebkit Javascript Function.bind does not exist (ECMAScript 5 missing functions)
Javascript in a web application runs the following loop:
for (var name in this) {
if(typeof(this[name]) == "function") {
if((/^on_|^do_/).test(name)) {
...
0
votes
2answers
27 views
Create new type, or check type?
For example, I have the below constructor:
function MyType(){
this.someProp = 'someText';
};
I create a new instance:
var myVar = new MyType();
Now I want to check the type of this ...
3
votes
1answer
227 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.
...
0
votes
1answer
54 views
JavaScript multiple inheritance and instanceof [duplicate]
Possible Duplicate:
Javascript multiple inheritance
Is there a way in JavaScript to do this:
Foo = function() {
};
Bar = function() {
};
Baz = function() {
Foo.call(this);
...
3
votes
2answers
129 views
Immutable undefined in self invoking functions
It's been a while since ECMAScript 5 came out and is being supported quite well in most modern browsers (IE9, CH 19+, FF 4+) and with it so is the "Immutable undefined". Though I keep seeing ...
0
votes
3answers
95 views
Global object access in strict mode [duplicate]
Consider the following code snippet:
var global = (function(){
return this;
}());
When this executes global will point to window object in browser.
But this doesn't work in strict mode. Why?
0
votes
0answers
78 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.. ...
1
vote
1answer
74 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"); // ...
4
votes
4answers
173 views
What object javascript function is bound to (what is its “this”)?
I know that inside the function it is this.
var func = function {
return this.f === arguments.callee;
// => true, if bound to some object
// => false, if is bound to null, because ...
1
vote
2answers
70 views
Using a specific JavaScript version (< 1.8.5)
I'm trying to test the writable property of undefined (assigning a value to undefined) using older JavaScript versions in Firefox but for some reason the code used to specify a version isn't working.
...
6
votes
4answers
224 views
The dangers of overwriting JavaScript object and functions
The nature of JavaScript allows for its native objects to be completely re-written. I want to know if there is any real danger in doing so!
Here are some examples of native JavaScript objects
Object
...
7
votes
1answer
123 views
Why do built-in functions not have a prototype property?
Given that the ES 5.1 standard states that...
1) Note at the foot of http://es5.github.com/#x13.2
NOTE A prototype property is automatically created for every function,
to allow for the possibility ...
1
vote
1answer
99 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
...
2
votes
1answer
97 views
ECMASCRIPT 5 with wro4j and Google Closure Complier
We are using wro4j with Google Closure and Maven to minify our JS. By default it does not suport strict mode in the js ("use strict";).. it just strips it out. Is there any configuration I can do in ...
1
vote
1answer
168 views
Knockout.Mapping and EcmaScript 5 get set
ko.mapping can transform get, set property's (ES5) in single ko.computed ?
var people = {
get Name (){
return this._name;
},
set Name(value){
this._name = value;
}
...
3
votes
1answer
68 views
Why is Object.__proto__ equal to Function.__proto__?
Why Object.__proto__ === Function.__proto__ in JavaScript?
What is the purpose of this design?
4
votes
1answer
75 views
JavaScript prototype.constructor property for constructors not in spec?
I cannot find anywhere in the JS spec where functions - when called with new should set the constructor property of their prototype to themselves.
Sure the spec says the Built-in constructors ...
0
votes
0answers
130 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 ...
3
votes
2answers
668 views
es5-shim and underscore.js?
I have both es5-shim.js and underscore.js in my JavaScript project.
es5-shim.js just add some javascript native functions like reduce and some on arrays for Internet Explorer and some old browsers. ...
1
vote
1answer
93 views
Why using `strict mode` in JavaScript libraries? [duplicate]
Possible Duplicate:
What does “use strict” do in JavaScript, and what is the reasoning behind it?
Actually I know what the use strict does in JavaScript as the question asked here:
What ...
3
votes
2answers
159 views
`this` in global scope in ECMAScript 6
I've tried looking in the ES6 draft myself, but I'm not sure where to look:
Can someone tell me if this in ES6 necessarily refers to the global object? Also, will this object have same members as the ...
0
votes
2answers
142 views
Why does Chrome & FireFox console print undefined?
Take this simple Test object and paste it into the console, you'll see that it says undefined. The object is working because it also prints 123, but what is the undefined about.
Test:
var Test = new ...
2
votes
0answers
131 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 ...
0
votes
3answers
74 views
Extending a class or Creating a new function, Which is better? [closed]
If somebody wants to implement a function (e.g. Array.prototype.filter) for an old browser which method is better? Why? What is pros and cons of each one?
if (!Array.prototype.filter) {
...
2
votes
3answers
272 views
Why is it Object.defineProperty() rather than this.defineProperty() (for objects)?
I'm working on a JavaScript project, and was just wondering why an object instance doesn't inherit the defineProperty() and other methods, rather than having to call the superclass (superobject?) ...
3
votes
5answers
117 views
For Javascript, what prevents modern implementation not to treat arguments as a real array?
I think it is an old Javascript behavior (Crockford said it is a design error) that inside a function, arguments is like an array, except it is not a real array, so array methods cannot be invoked on ...
1
vote
3answers
95 views
Does a new typeof operator (or function) exist for ECMA-5?
I thought there are 5 primitive types for JavaScript (null, undefined, boolean, number, string), and then there is object (which includes array, function, and custom defined pseudo class objects). ...
2
votes
1answer
135 views
Why does `Object.prototype.toString.call(null)` work in non-strict mode?
Why would the following be the result in ES5 non-strict mode?
Object.prototype.toString.call(null);
=> [object Null]
given that
Object.prototype.toString.call(window);
=> [object global]
...
2
votes
3answers
219 views
Why does `Object.prototype.toString` always return `[object *]`?
If you call Object.prototype.toString.call(anything) the result is always [object Something], where Something could be one of several things. My question is why is the "object" part there? It seems ...
4
votes
4answers
75 views
Strange value for the “this” object
Regarding this code:
var name = "Jaguar";
var car = {
name:"Ferrari",
getName:function(){
return this.name;
}
};
alert((car.getName = car.getName)());
The output is: Jaguar.
Why does ...
2
votes
1answer
39 views
How can I convert this working native ES5 code to use underscore's _.bind() instead?
I have an existing project that (sadly) uses underscore.js, rather than an ES5 shim, to support IE8 and other non-ES5 browsers. I'm used to ES5, but don't generally use underscore. I have read the ...
3
votes
0answers
49 views
Lookup new Object properties [duplicate]
Possible Duplicate:
Detecting change in a Javascript Object
Is there any reliable, cross-browser way to detect or "read", new property-names for an object when they get assigned ?
For ...
3
votes
1answer
99 views
Chaining compound assignment operators in JavaScript
In C#,
string s = "abc";
s += (s += s);
Console.WriteLine(s);
writes abcabcabc (http://ideone.com/pFNFX2). This is fine, because the C# specification explicitly says in section 7.16.2 that
the ...
3
votes
2answers
74 views
Setting length on wrapper functions
I often find myself needing to wrap a function on an object for various purposes. Is there an elegant way to preserve the length property of the original function on the wrapper function?
For ...
0
votes
1answer
49 views
Is there a good javascript fallback library for newly supported functions
I'm wondering if there is a good fallback javascript library out there that creates non-supported functions for functions that are defined in newer ECMA specifications. I'm using a library that uses a ...
3
votes
4answers
145 views
How can I define a global variable only if it doesn't exist in ES5 strict?
I'm writing an implementation of ES Harmony Symbol/Name in ES5. I'm going to use the name Symbol, but I want the browser to use any pre-existing Symbol it has in the case that it already exists (in ...
1
vote
1answer
671 views
Load SVG file on click in HTML?
I want to load an external SVG file in an HTML page by clicking.
Now I use a JavaScript:
<script language="javascript">
<!--
var state = 'none';
function ...
1
vote
6answers
75 views
Is it possible to write this javascript array declaration shorter?
Is it possible to write this "singleton array declaration" even shorter? There are different scripts which adds something to array but they're loaded asynchronously, so I don't know which will ...
0
votes
3answers
658 views
JavaScript date function returns “Date {Invalid Date}” in Firefox browser
Facing a problem with JavaScript Date function, returns "Date {Invalid Date}" in Firefox browser but works fine in Google chrome.
// My Input is
new Date("Sat Jan 01 00:00:00 EST 1");
// Works fine ...
0
votes
1answer
72 views
Javascript loaded in random order fails to initialize
I get my javascript loaded in an undetermined order. I have a namespace function to register namespaces. For example it's possible to write something like this:
...
1
vote
0answers
99 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 ...
2
votes
3answers
149 views
Automatic semicolon insertion & return statements
as you might know, ECMAscript trys to be smart and will automatically insert semicolons if you didn't write those explicitly. Simple example
function foo() {
var bar = 5
return bar
}
will ...
0
votes
1answer
106 views
using bitwise OR in javascript to convert to integer
we can do the following to convert:
var a = "129.13"|0, // becomes 129
var b = 11.12|0; // becomes 11
var c = "112"|0; // becomes 112
This seem to work but not sure if this is a standard JS ...


