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 ...
2
votes
1answer
141 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
245 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
76 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
42 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
105 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
75 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
54 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
161 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
772 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
77 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
805 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
73 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
107 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
162 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
114 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 ...
4
votes
0answers
83 views
What are the benefits of ES5 Strict being a fully statically scoped language? [closed]
Unlike the default language (ES5 Default), the strict mode of JavaScript (ES5 Strict) provides restrictions which make the language fully statically scoped. The default language isn't fully statically ...
10
votes
1answer
425 views
Don't use getPrototypeOf?
In this video (approx. 31 minutes in), Crockford says they (speaking on behalf of the ECMAScript committee) recommend not using Object.getPrototypeOf. His explanation was that it wasn't really meant ...
12
votes
3answers
160 views
How does Javascript's indexOf() resolve references
I was confusing myself a little with a thought experiment and now I'm looking for some advice. Its about ECMAscript references and the Array.prototype.indexOf() method.
Lets start easy:
var ...
0
votes
2answers
717 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 ...
1
vote
2answers
131 views
ES5 | When to use null and when to use undefined [duplicate]
Possible Duplicate:
Javascript null or undefined
null is a reserved word but not a keyword.
Hence it can not be over-written.
undefined is a built in global that can be over-written. This ...
0
votes
1answer
48 views
Simpler “Class” Definitions in JavaScript
I've noticed that in ECMAScript standards you have things like defineProperty, which is like defining properties and what not in a JavaScript object and prototype which extends the objects by use of ...
9
votes
1answer
102 views
Will JS-regex ever get lookbehind?
Is there any good reason why we lack it today, and if so, is it a resolvable one? Or is it like one of those things that would break backward compatibility if introduced?
4
votes
1answer
206 views
ES5 “strict” and arguments.callee [duplicate]
Possible Duplicate:
Why was the arguments.callee.caller property deprecated in JavaScript?
In ES5 strict mode (i.e. "use strict") the arguments.callee variable that refers to the current ...
0
votes
1answer
457 views
JetBrains WebStorm intellisense
When I see the intellisense menu in WebStorm, it shows little circular icons with lettering on them (i.e. "v", "m", "f", "p").
Does anyone know what all the icons mean, or know where there is a ...
1
vote
3answers
65 views
Defining custom objects and functions in JavaScript (Part 2)
Based on a question I asked prior to this, how would I qualify this string...
"MyCustomObject.prototype.foo.bar"
to this:
window['MyCustomObject']['prototype']['foo']['bar']
in object form? (it ...
0
votes
1answer
46 views
Defining custom objects and functions in JavaScript
Can someone explain what is wrong with this JavaScript example, and how to fix it if possible?
// I can define objects / functions like this.
window['Custom'] = function() { };
...
1
vote
2answers
82 views
strict mode return this w/o violation
I want to have my cake and eat it too: I want to have a method that returns this for chaining when it is bound to an object but returns undefined when it is called with a null|undefined scope. This ...
1
vote
1answer
162 views
JavaScript Hashtable / Dictionary
Consider the following article explaining hashtables / dictionaries in JavaScript:
Can anyone recommend a good Hashtable implementation in Javascript?
Given the accepted answer, I want to be able to ...
1
vote
1answer
82 views
Native or underlying JavaScript files in JetBrains WebStorm
I am currently using JetBrains WebStorm to develop a JavaScript library. When I declare a variable (E.G. var instance = new HTMLDivElement()) it shows up in intellisense as being defined in a ...
6
votes
2answers
87 views
&& evaluation issue
As far as I know, The logical && works like the following
var test = false;
var foo = test && 42;
This code, will assign 42 to foo only if the first condition gets evaluated to ...
0
votes
1answer
81 views
Ecma 5.1 and HTML 5
Is there a direct relation between these two? Is it necessary to use ECMA 5.1 scripting languages (javascript) in HTML5 pages.
Thanks
2
votes
1answer
139 views
Prototypal Inheritance and static methods
I'm trying to get used to the "real" prototypal inheritance of JavaScript (ECMAScript 5) but somehow my mind seems to be stuck in the classical inheritance pattern.
I'd like to create a Vector object ...
1
vote
3answers
107 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 ...
0
votes
3answers
163 views
How to write device drivers in Javascript?
Is it possible to write hardware drivers in Javascript? What would be the steps required for such a task?
Also, I was unsure where to post this, so any suggestions regarding this are also welcome. I ...
1
vote
2answers
215 views
JavaScript resolve string to equivalent object
I am writing a JavaScript utility which allows a user to detect if a particular object / function is available at runtime. Here is the source code, this works but it needs editing every time you want ...
2
votes
2answers
240 views
Writing ECMAScript5 compliant code
I want to build a library in JavaScript/JScript/ECMAScript...whatever you want to call it, which will target modern standards (HTML5, CSS3, ESv5) with that in mind, any browser that supports the ...
2
votes
1answer
70 views
What is the current best practice following the addEvent() saga?
There seem to be endless pages of writing and comment threads about addEvent implementations in Javascript, going back many years.
What should I be using today, in currentTime.getFullYear(), for ...
1
vote
2answers
41 views
Trouble with svg scripting
I'm trying to get some basic ecma scripting to work in an svg document that I have.
<svg contentScriptType="text/ecmascript" width="957px"
xmlns:xlink="http://www.w3.org/1999/xlink" ...
1
vote
5answers
98 views
Looking for an explanation of why `[1,2,3] === [1,2,3]` is false in JS
I was looking at clause 11.9.6 of ES5 trying to figure out why [1,2,3] === [1,2,3] returns false.
The code:
a = [1,2,3]
b = [1,2,3]
a === b // false
Relevant rules for the strict equality ...
2
votes
3answers
42 views
Internal reference to function created using Function constructor
I'm doing a bit of metaprogramming, using the Function constructor to create a function from an assembled string.
The Function constructor allows specifying argument names and a body, but there ...
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 ...
4
votes
2answers
158 views
Revisiting extending native prototypes after ECMAScript 5
Recently, given the changes to defining properties in ECMAScript 5, I have revisited the question of whether we can safely extend the native JavaScript prototypes. In truth, all along I have extended ...
10
votes
3answers
503 views
Confusion about Function.prototype.bind()
I'm a huge fan of ES5's Function.prototype.bind and currying arguments (basically creating default arguments for functions).
I was fooling around with that a bit, but I can't for the life of me ...
2
votes
1answer
61 views
Where in Ecmascript 5.1 is it mentioned that no left curly brace in an if statement is acceptable?
I couldn't recall the rules for the if statement, so I looked at clause 12.5, but it wasn't obvious to me still if the curly brace is necessary. So, I ask, where in Ecmascript 5.1 is it mentioned that ...
1
vote
1answer
89 views
How to construct a new type in Javascript? [duplicate]
Possible Duplicate:
How to “properly” create a custom object in JavaScript?
Is it possible to construct new types in Javascript? If "everything is an object", then are object ...
1
vote
3answers
95 views
JS: Distinctions between undefined value and Undefined type, as well as null value and Null type?
Would someone explain the difference between an undefined value and Undefined type, and similarly the same for null values and Null types?
Bonus: why do boolean, string, and number have values, ...
2
votes
1answer
94 views
What's the meaning of strict reference flag in ECMA 5 262
I was reading ECMA 5 262, and feel confused on the term "strict reference" in http://es5.github.com/#IsStrictReference:
A Reference is a resolved name binding. A Reference consists of three ...
4
votes
3answers
197 views
How to Add Static Members in EcmaScript 5
I want to add a static function to a class in EcmaScript 5 JavaScript. My class definition looks as follows:
var Account = {};
Object.defineProperty(Account, 'id', {
value : null
});
And I ...
2
votes
2answers
110 views
In ECMAScript, how are some of native objects also built-in?
I suppose a definition of native and built-in objects is required to answer this question. Here's what the ECMAScript spec defines these as:
4.3.6 native object
object in an ECMAScript ...

