Tagged Questions
4
votes
3answers
53 views
Is it possible to determine if an object created with Object.create inherits from Array in JavaScript?
Identifying which objects are which is complicated in JavaScript, and figuring out which objects are arrays has something of a hacky solution. Fortunately, it manages to work in both of the following ...
0
votes
1answer
19 views
How to configure properties in ECMAScript 5: Object.create or Object.defineProperties?
What is the preferred way of defining property attributes in ECMAScript 5? From what I understand, there are at least two ways:
function Foo () {
Object.defineProperties(this, {
'a': {
...
8
votes
3answers
87 views
In JavaScript, why don't any objects equal each other, except strings? [duplicate]
Everything in JS is an object. I've always known that, and I totally understand that. I know why {} !== {}. It's two different objects. Same as if you were to write out new Object() == new Object().
...
2
votes
1answer
32 views
Why is delete not allowed in Javascript5 strict mode?
I'm fairly new to javascript, but I'm in love it's dangerously fast and loose expressiveness. That said, I noticed that apparently when operating in "use strict" mode, you can't delete objects. I'm ...
1
vote
1answer
29 views
SVG JavaScript/ECMAScript API
SVG is ofcourse a XML language, but it's also accessible through JavaScript/ECMAScript. It supports various functions like getCTM, getScreenCTM, getBBox, but I can't find a list anywhere of all the ...
3
votes
1answer
33 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 ...
8
votes
2answers
97 views
Why are JavaScript Arguments objects mutated by assignment to parameter?
What is the rationale behind this behaviour?
function f(x) {
console.log(arguments[0]);
x = 42;
console.log(arguments[0]);
}
f(1);
// => 1
// => 42
Perhaps this was a genuine mistake. ...
0
votes
2answers
76 views
WeakMap implementation in EcmaScript5?
I've run across a JavaScript library that implement a cross-browser WeakMap in ES5. (WeakMap is slated for ES6.)
How can this possibly work without support in the JavaScript language itself?
Edit: ...
0
votes
2answers
46 views
What is the advantage of property attributes “feature” in ECMAScript-5?
I want to know more about usage of property attributes described here:
http://www.ecma-international.org/ecma-262/5.1/#sec-8.6.1
I can imagine usecases of these attributes, but they are very rare.
...
1
vote
2answers
24 views
How does the ECMA Script 5 spec allow successful parses for hex ints greater than 0xFF?
In EMCA262 version 5.1 the definition of a hexadecimal integer literal is: (document page 20, PDF page 32)
HexIntegerLiteral ::
0xHexDigit
...
1
vote
1answer
42 views
Clarication needed for implementing properties with the revealing module pattern using Html5 getters and setters
I've searched a lot for how to do properties in Javascript. Most all of the revealing module pattern I've seen has exclusively exposed functions, and from experience I know if I expose an object, I'm ...
6
votes
2answers
59 views
switch-case performance in ECMAscript
I'm using switch-case statements on regular bases in ECMAscript. Beside my personal endorsement about it, there is tons of specialist literature out, about performance in this language in general and ...
0
votes
1answer
17 views
how to generate a vxml tag through adynamic ecma/javascript expression
I am having issues with the following scenario:
my vxml has the following snippet:
<block>
<script src="myscript.es"/>
<audio> <value expr="temp()"/> </audio>
...
1
vote
4answers
46 views
Object.create instead of Constructors for inheritance
I want to be able to learn creating Objects per the new JavaScript ECMA 5 standards, and use them in my current projects, without breaking functionality. But I see un-explainable stuff that makes me ...
1
vote
2answers
56 views
Javascript: Extract part of URL, clean it, and use it within html embed code for a flash container
Sorry in advance, lots of answers on this site relate to parts of this query, though I am failing to connect the dots. Any help will be appreciated (happy to buy virtual beers, etc)
I'm looking to ...
0
votes
6answers
109 views
What does [].forEach.call() does in JavaScript?
I was looking at some snippets of code, and I found multiple elements calling a function over a node list with a forEach applied to an empty array.
For example I have something like:
...
0
votes
0answers
39 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
1answer
68 views
argumental reference inconsistency in javascript
I have recently encountered a nasty issue in JS.
Let say we pass a map, an array of objects to a function f.
var o=[{a:0}];
function f(a){
for(var i in a){
if (a.hasOwnProperty(i)){
...
3
votes
6answers
109 views
which and how javascript function will be called if we have 2 function declarations with the same name?
Take a test:
<script>
function say() { alert( "ABOVE" ); }
say();
function say() { alert( "BELOW" ); }
</script>
The result is "BELOW" for all test (Chrome, Firefox, IE).
...
7
votes
1answer
102 views
Scan Javascript for browser compatibility
Is there a tool out there to scan my Javascript code for functions that may not be present in all browsers?
My library is completely non-UI, so I don't care about how something is "displayed". What ...
3
votes
1answer
119 views
Detect default event handling
Is it possible to detect whether a particular DOM event has any event handler bound to it (including browser default event handling) - within Firefox's Greasemonkey code (EcmaScript 5.1 strict mode)?
...
2
votes
4answers
153 views
argument.callee.name alternative in the new ECMA5 Javascript Standard
I'm working on porting some old code to 'strict mode', what are the alternatives to the argument.callee and similar argument.caller etc in the ECMA5 standard?
ADDED INFO: I did not specify why I ...
4
votes
1answer
287 views
Angular equivalent of jQuery $.map?
I'm transitioning from relying on jQuery to building apps in AngularJS. It's recommended in a number of places to not mix jQuery and Angular code.
One thing I miss though is the jQuery $.map function ...
2
votes
2answers
111 views
Problems with extending regular Objects to support ES5 Array capabilities
I have long ago been willing to get the line between native Arrays and regular Objects totally blurred, not only extending Object with the same capabilities as Arrays got in ES5, but bundle up with my ...
0
votes
3answers
54 views
Using this.prototype.show in JavaScript
Previously Modal was a function and define like this
function Modal (heading){
this.modal="Hello"; //works fine
Modal.prototype.show = function(){ // Not working
...
3
votes
1answer
88 views
Why is Boolean() so slow in Javascript?
According to the ECMAScript specification, both the unary logical NOT operator and the Boolean() function use the internal function ToBoolean(), and the NOT operator also does a few checks to reverse ...
0
votes
2answers
66 views
What is the difference between using Object.create() and using assignment operator?
Here are a few examples.
// case 1:
var obj1 = {msg : 'Hello'};
var obj2 = obj1;
obj2.msg = "Hi!"; //overwrites
alert(obj1.msg); //=>'Hi!'
// case 2:
var obj1 = {msg : 'Hello'};
var obj2 = ...
1
vote
1answer
135 views
Javascript Object.defineProperty set method trigger on property change
Take the following (coffeescript) example of a Person class with a details property, which in turn has its own properties:
class Person
constructor: ->
details =
name: ''
age: 0
...
0
votes
1answer
36 views
ES5 sort() and dates
I have a number of objects in an array. The objects have a 'time' property which is a date string.
items = [
{time: "2013-03-01T10:46:11Z"},
{time: "2013-03-03T10:46:11Z"},
{time: ...
1
vote
3answers
51 views
In JavaScript, will any standalone inner function treat “this” as the object on which the original method was invoked on?
In the book JavaScript Enlightenment (the link is to a pre-published version (page 85), but I have the published version (Chapter 6.3) and it says the same thing), it says that any inner function will ...
2
votes
2answers
60 views
When invoking a closure in JavaScript, is a new execution context created when entering the closure code?
Notice the closure example below:
<script>
function foo() {
var x = 1;
function bar() {
var y = 2;
alert(x + y);
}
return bar;
}
var dummy = foo(); // Assign ...
4
votes
3answers
132 views
JavaScript 'use strict'; inside functions
Tested some js code in Chrome Dev Console and I'm a bit confused.
I know that in strict mode functions that are not methods of an object when referred to this keyword should receive undefined instead ...
5
votes
2answers
309 views
Why are anonymous function expressions and named function expressions initialized so differently?
I'm looking at section 13 or the ECMAScript specification (v. 5). An anonymous function expression is initialized as follows:
Return the result of creating a new Function object as specified in ...
2
votes
2answers
34 views
Details about what happens when entering a function declared in the global scope is missing from ECMAScript Specification v5?
The ECMAScript specification goes into detail about what happens when control enters the execution context of a function within a function.
function foo() {
function bar() {
}
bar(); // ...
2
votes
1answer
75 views
JavaScript Closures - Using the ECMA Spec, please explain how the closure is created and maintained
I'm reading about JavaScript closures. I'm familiar with Execution Contexts, how the Lexical Environment is maintained, and very familiar with Lexical Scoping.
I want to know how closures in ...
2
votes
2answers
37 views
Are all function declarations & expressions created by called new Function() behind the scenes?
I'm reading the portion of ECMA 262 v5 script that speaks of Function definitions. For both function declarations and function expressions, the following is mentioned:
Return the result of ...
1
vote
1answer
64 views
Does Eval really introduce dynamic scoping to JavaScript?
People say that Eval brings dynamic scope into JavaScript, but I don't see how that statement is valid. Using Eval evaluates the expression using the same lexical environment/variable environment as ...
0
votes
2answers
58 views
Trying to understand 'this' inside Prorotype and Lambda functions
So today I was coding an AJAX object.
I created a constructor, ajaxObj:
function ajaxObj( arg1, arg2, wrapper ) {
this.form = arg1;
this.btn = arg2;
...
3
votes
1answer
65 views
Why do catch clauses have their own lexical environment?
Consider the following excerpt from ECMA-262 (which I recently saw in this question):
A Lexical Environment is a specification type used to define the association of Identifiers to specific ...
4
votes
3answers
67 views
Does a function expression have its own scope/lexical environment
I'm reading the Execution Context / Lexical Environment section of the ECMA 262 5 specification. It states the following: (emphasis added)
A Lexical Environment is a specification type used to ...
2
votes
2answers
51 views
Clarity on the difference between “LexicalEnvironment” and “VariableEnvironment” in ECMAScript/JavaScript
Could someone clarify what the difference is between these two, as they exist in the Execution context? It's hard for me to read the ECMA 262 v 5 specification and clearly see the difference.
Thank ...
6
votes
1answer
143 views
Is there a reason why jQuery.each doesn't rely on Array.forEach when available? [duplicate]
While digging into the source code of the underscore library, I found at that _.each relies on an ECMAScript 5 API Array.forEach whenever available:
var each = _.each = _.forEach = function(obj, ...
0
votes
3answers
50 views
Large number in javascript
I am working on a calculator in javascript, where user can enter the values in textfield and operation will be performed.
Now if user enters a very large value
for example 5345345345353453453453535
...
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:
{
...
4
votes
3answers
147 views
Why is there no forEach method on Object in ECMAScript 5?
ECMAScript 5's array.forEach(callback[, thisArg]) is very convenient to iterate on an array and has many advantage over the syntax with a for:
It's more concise.
It doesn't create variables that we ...
0
votes
1answer
18 views
Pushing a children to “this” will also push it in the child's childrens… (Javascript)
I have some entity/component code in javascript. It's mostly done but I am hitting this really weird problem. My entities have a childrens array in which I push the childrens, and some other array ...
1
vote
2answers
85 views
ECMAScript multiple Prologue Directives
Certain ECMAScript environments permit switiching into a special mode by means of a Directive Prologue. ECMAScript 5 has "use strict" and others such as asm have their own like "use asm".
The docs on ...
7
votes
1answer
141 views
Nested functions Javascript
In a Javascript function, are you required to define nested functions as function expressions or are function declarations allowed in a function body? For example, would something like this be ...
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.)







