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
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 ...
7
votes
3answers
493 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 ...
0
votes
5answers
190 views
JSHint won't let me use 'forEach' in a 'for' loop
I have an object with arrays as values.
people = {
'steve':['foo','bar'],
'joe':['baz','boo']
}
For each key, I would like to loop over the values in the corresponding array. Simple enough:
...
14
votes
2answers
234 views
Why is Number.prototype a Number
({}).toString.call(Number.prototype) === "[object Number]"
The Number prototype object is itself a Number object (its [[Class]] is "Number") whose value is +0.
15.7.4
Why would it be useful ...
1
vote
1answer
237 views
What's the difference between void, eval, and the Function constructor in JavaScript?
What's the processing model for executing code within these different statements?
void(alert('hi'))
undefined
eval(alert('hi'))
undefined
Function(alert('hi'))
function anonymous() {
undefined
}
...
1
vote
7answers
499 views
Is there any practical use of redefining Math.constructor in JavaScript/ActionScript?
The Math object does not have a prototype property, but does have a constructor property. Is there any case in which redefining the constructor would be useful?
2
votes
1answer
314 views
javascript defineProperty to make an attribute non enumerable
I'm trying to use defineProperty to made attributes not appear in for...in cycle, but it doesn't work. Is this code correct?
function Item() {
this.enumerable = "enum";
this.nonEnum = ...
13
votes
2answers
2k views
Avoiding .call() and .apply() using .bind()
I'm looking for a way to accomplish a certain task and that is, going from
jQuery.when.apply( null, promiseArray ).done(...)
to
when( promiseArray ).done(...)
As you might know, .bind() can get ...
4
votes
2answers
109 views
Why is my for loop not working on my Javascript properties?
I created this object and it's properties:
var obj = {};
Object.defineProperty( obj, "value", {
value: true,
writable: false,
enumerable: true,
configurable: true
});
var name = "John";
...
0
votes
0answers
122 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(){
...
1
vote
2answers
124 views
How to get a property with get/set to serialize with JSON.stringify()
I have the following scenario:
var msp = function () {
this.val = 0.00;
this.disc = 0;
};
Object.defineProperty(msp.prototype, "x", {
get: function () {return this.val - ...
1
vote
1answer
183 views
Questions about JSON.stringify in ECMAScript
I'm watching MDN's "Using native JSON". And I've 3 questions about the JSON.stringify method.
Question 1:
var foo = {
"foundation": "Mozilla",
"model": "box",
"week": 45,
...
3
votes
1answer
871 views
when do you use Object.defineProperty()
I'm wondering when I should use
Object.defineProperty
to create new properties for an object. I'm aware that I'm able to set things like
enumerable: false
but when do you need this really? If ...
0
votes
2answers
110 views
ES5: Returning parent function once all items have called back with a forEach
I'm looking at using ES5's new Array.forEach(). I believe the callbacks for each item should execute in parallel. I'd like a function to return once all values have processed.
// I'd like to make ...
5
votes
1answer
108 views
Is ECMAScript 5 available yet in any of the browsers?
I am wanting to experiment with some of the new ECMAScript 5 features. I would like to do some stuff similar to some code I found when googling:
var obj = {};
Object.defineProperty( obj, "value", {
...
-2
votes
2answers
144 views
What are the practical uses of the new methods ES5 provides?
With libraries such as ES5-Shim, we can use the new hotness now. Many methods on arrays (like forEach, map, every, etc) could be used now to write clean and beautiful code.
I'd like to have a list a ...
0
votes
1answer
402 views
“indexOf” as key of array in “for … in” cicle in IE8
I used the code described here but now, when I do a "for ... in ..." cicle, it gets the function "indexOf" as an index position of the array...
Example Code:
var the_array=new Array(); ...
2
votes
1answer
753 views
ECMAScript 5 Date.parse results for ISO 8601 test cases
What result is right for the following test cases?
//Chrome 19 Opera 12 Firefox 11 IE 9 Safari 5.1.1
...
1
vote
2answers
127 views
Idea on content passing. Help needed
Core Question SOLVED!!!!! see below
I need help coming up with a concept to achieve my goal. I am having a problem coming up with an idea to how I can navigate the DOM properly with the method I ...
0
votes
4answers
116 views
insertHTML with hidden element
I need confirmation please!
I am trying to swap out the contents from one element to another that includes HTML tags. I am pretty sure I am correct when stating the below code should work. I need to ...
1
vote
3answers
292 views
Good way to change an object's prototype to change results of instanceof?
I wanted to comment on this old question, but it appears to be locked.
Here is my use case:
An object obj is created with constructor Base. obj instanceof Base returns true.
I want to change the ...
2
votes
2answers
489 views
Why can I set [enumerability and] writability of unconfigurable property descriptors?
https://developer.mozilla.org/en/JavaScript/Reference/Global_Objects/Object/defineProperty states:
configurable:
True if and only if the type of this property descriptor may be changed and if ...
0
votes
2answers
525 views
Adding Tables Rows and Cells Dynamically Using Javascript
I was trying to add a table row with data in my HTML table using javascript but it seems I it can't add. why is that?
<html>
<head>
<title>
</title>
<script>
...
2
votes
2answers
220 views
Why were ES5 Object methods not added to Object.prototype?
ES5 added a number of methods to Object, which seem to break the semantic consistency of JavaScript.
For instance, prior to this extension, the JavaScript API always revolved around operarting on the ...
0
votes
1answer
163 views
Google Maps API strict mode compliance
As part of a research project, I am currently investigating the sandboxing of third-party scripts using the Secure EcmaScript implementation of the Google Caja project ...
10
votes
1answer
177 views
Why does a function declaration override non-writable properties of the global object?
Setting a property descriptor like this:
Object.defineProperty(window, 'someFunction', {
value: function() { alert('safe'); },
writable: false,
enumerable: false,
configurable: false
...
2
votes
3answers
110 views
In strict mode, what is considered to be “gaining access to the global object”?
http://jsbin.com/ifabem/2/edit
"use strict";
window.x = "Hello World";
alert(x); // this does't throw an exception in strict mode
Why doesn't accessing x directly in the last statement violate ...
7
votes
2answers
523 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 ...
2
votes
1answer
311 views
Why did ECMAScript 5 add .bind()?
I just finished reading an article about ECMAScript 5 strict mode.
It says that ECMAScript 5 added .bind().
var obj = {
method: function(name){
this.name = name;
}
};
...
1
vote
1answer
36 views
Having trouble passing in a dependent object to a Javascript Module
I have the following code:
var myModule = (function($) {
// Insert code here
} (jQuery || Zepto));
If I don't have jQuery referenced on the page, the script errors out saying that jQuery is ...
0
votes
2answers
103 views
Steps to migrate a project to using “strict mode”?
What are some things I must verify before taking an existing code base and converting it to Strict Mode?
The project is a website that is designed to run on all browsers from IE 8 and above, and ...
0
votes
2answers
1k views
How to Get External Page's HTML in another Page
I have a simple HTML page to display other pages. When a request comes to the page the page internally calls to another page and views called page content.
I have tried it to be done with IFrame but ...
39
votes
4answers
1k views
A function is larger than an array?
A friend of mine discovered some interesting behaviour in some Javascript code, which I decided to investigate further.
The comparison
(function (x) {return x*x;}) > [1,2,3]
returns true in ...
0
votes
2answers
348 views
In Chrome, JS bound functions have null arguments.callee.caller
From Chrome 17 on, arguments.callee.caller seems to be null for bound functions:
function a() {
this.test = function() { console.debug('*** ' + arguments.callee.caller); };
this.test(); // This ...
1
vote
1answer
199 views
JSON.parse without Strict Mode
I'm reading the John Resig blog about the Strict Mode in javascript, but i have a question.
One of the features of Strict Mode, is the use of JSON.parse and JSON.stringify, but i can use it WITHOUT ...
1
vote
1answer
184 views
Why is Object.create() so verbose?
Object.create is a great addition to JavaScript, because it adheres more to the prototypical nature of JS. However, I can't help but find the syntax of the 2nd parameter to the function to be too ...
4
votes
1answer
369 views
John Resig's simple class instantiation and “use strict”
Reference : http://ejohn.org/blog/simple-class-instantiation/
// makeClass - By John Resig (MIT Licensed)
function makeClass(){
return function(args){
if ( this instanceof arguments.callee ) {
...
19
votes
3answers
4k views
Proper non-string Javascript exceptions
Somehow this does not feel like the culmination of the 50 years programming language development:
throw "My exception message here";
What's the correct way to do exceptions in Javascript, so that
...
2
votes
1answer
530 views
What is the enumerable argument for in Object.create?
In what usages of Object.create do you want to set enumerable to true?
4
votes
4answers
3k views
Button to show choose a file to upload dialog box
Instead of using an input type="file" html tag, is it possible to bring up a choose a file to upload dialog box by clicking a input type="button"? Then when a file is selected from the choose a file ...
4
votes
1answer
132 views
Difference between this property descriptor and property assignment in ECMAScript 5?
I am reading up a little more on ECMAScript 5 (in the browser, using the ES5-shim which I know doesn't support everything). And just to clear up any confusion, considering I have this object (stolen ...
6
votes
2answers
3k views
Disable “use the function form of use strict” but keep the “Missing 'use strict' statement” warning
I am using jslint to validate my code.
I have "use strict" on all my pages.
How can I disable the message "use the function form of 'use strict'" but keep the "Missing 'use strict' statement" warning, ...
30
votes
2answers
1k views
Is it possible to emulate non-enumerable properties?
ES5 has a enumerable flag. Example
Example
var getOwnPropertyDescriptor = Object.getOwnPropertyDescriptor
, pd = getOwnPropertyDescriptor(Object.prototype, "toString");
assert(pd.enumerable === ...
1
vote
0answers
442 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) {
...
9
votes
2answers
2k views
How to provide ECMAScript 5 (ES 5)-shim?
ECMAScript Fifth Edition (released December 2009) introduces a bunch of new methods (see this table for details). However, there still are older browsers out there which do not implement those new ...
3
votes
2answers
713 views
Accessor Descriptor: How to use 'get' and 'set' in practice?
I am not sure if I am getting it right.
This example is straight from MDN (Mozilla Developer Network):
var bValue;
Object.defineProperty(o, "b", {get : function(){ return bValue; },
...
2
votes
3answers
439 views
Where can I find a reference sheet with ECMAScript 5 functions?
Where can I find a 1-2 page reference sheet of all of ECMAScript 5's data-types and functions?
e.g. Syntax and short explanation for: Array.prototype.forEach, Date.now, and so on.
1
vote
2answers
291 views
Must we pay attention to JavaScript “strict mode”?
Reading about ECMAScript 5's strict mode I learn that:
Certain language functions are so pervasive that performing runtime
checks has considerable performance cost. A few strict mode tweaks,
...
15
votes
4answers
2k views
Any performance benefit to “locking down” JavaScript objects?
JavaScript 1.8.5 (ECMAScript 5) adds some interesting methods that prevent future modifications of a passed object, with varying degrees of thoroughness:
Object.preventExtensions(obj)
...
4
votes
2answers
525 views
Array.prototype.forEach alternative implementation parameters
When working on my latest web application and needing to use the Array.forEach function, I constantly found the following code used to add support to older browsers that do not have the function built ...
