The ecma tag has no wiki summary.
2
votes
1answer
33 views
(function(){})() vs. !function(){}() [duplicate]
In jQuery javascript code I see
(function(window, undefined) {
})(window);
And in Twitter
!function(window, undefined) {
}(window);
Can someone tell what the difference between these two ...
-1
votes
2answers
52 views
Why are the rest parameters in JavaScript called so? [closed]
Why are rest parameters in JavaScript called so?
0
votes
1answer
16 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>
...
0
votes
0answers
11 views
Where can I find a “navigable” version of the 6th edition of ECMA 335? [closed]
The 3rd, 4th and 5th editions of the ECMA 335 standard, available here, all were "navigable" PDF files, i.e. with an index (hyperlinked list of sections in the left bar of your favorite PDF reader). ...
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
67 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)){
...
0
votes
0answers
22 views
Accessor Descriptors on “root” object?
I'm currently working with the Jint Javascript Interpreter for the .NET project I'm currently working on. My question is about whether or not I can access Accessor Descriptors on the root object of ...
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
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 ...
3
votes
3answers
56 views
Why “typeof + ''” returns 'number'?
Let's try to type code below in console:
typeof + ''
This returns 'number', while typeof itself without argument throws an error. Why?
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 ...
0
votes
0answers
272 views
Unable To Get The Selected field value from SP List using ECMA/Javascript/COM
I wrote the following code to get the value of selected column 'Title' from the current page list.I need generic code that should work for the current loaded list.For me here the first alert is ...
2
votes
1answer
59 views
JavaScript (ECMA) Grammar - Left Recursion Problems
First off: Using the LL(*) parser from the Actipro SyntaxEditor. This could apply to any LL(k) parser though.
I am currently trying to write a valid LL(k) grammar for Javascript (using the ECMA-262 ...
8
votes
2answers
201 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.)
1
vote
1answer
217 views
What does <color indexed=“81”> mean?
I have a document created by Excel 2007:
<fileVersion appName="xl" lastEdited="4" lowestEdited="4" rupBuild="4506" codeName="{B7FE6334-C1A2-E50D-BD3D-5F4D41BBC2E3}"/>
... which contains the ...
2
votes
1answer
68 views
Match end of Javascript code statement
I would like to process/parse and alter some Javascript code, preferably in a regular expression if that's possible (open to suggestions). The purpose would be to insert a new code snippet after each ...
1
vote
0answers
55 views
Sizeof opcode differs between Reflection.Emit and ECMA specs?
So, I developed a tiny library directly in IL to interface with C# for the sizeof opcode (NOT C# operator). It was pointed out to me that my IL "wasn't valid" even though it was.
In the ECMA spec it ...
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) {
...
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 ...
0
votes
1answer
104 views
TCP Sockets, JSON and security
After searching profusely and vigorously, I have nothing on how to prevent security issues that arise when I use sockets for some multiplayer features in a Flash game. The amazing ECMAScript ...
1
vote
2answers
269 views
PHP (PCRE) Validation in a Javascript Function
Is there an existing function (or perhaps someone wrote some existing code) to validate in a JS function that the text passed is valid PCRE? I've been Googling like crazy but the closest thing I've ...
1
vote
3answers
105 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 ...
2
votes
2answers
225 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 ...
1
vote
6answers
627 views
What's the difference between JavaScript, JScript & ECMAScript? [closed]
OK, so I'm trying to learn JavaScript properly so that I can write good, clean client-side code, but whenever I think I'm making progress, something stops me dead in my tracks!
I want to know:
What ...
1
vote
0answers
96 views
What to put on my resume: JavaScript, JScript or ECMAScript? [closed]
What to put on my resume: JavaScript, JScript or ECMAScript?
I understand the difference.
Anno 2012, what should one put on his resume to professionally state one knows this language?
0
votes
0answers
105 views
How to Read and Write image files from dir with Ecma Script V2
i have a problem with Ecma Script Version 2.
I want to read a image from a binary string, at the moment i read a file from directory and want to write it into a new file. The type of the file is JPEG.
...
2
votes
1answer
164 views
How do JavaScript versions correlate to ECMAScript versions?
For example, [].map was "implemented in JavaScript 1.6." Is that an ES5 method? How does the 1.6 correlate to an ECMAScript version?
0
votes
1answer
1k views
Copy selected List-Items to an other list with ECMA Script
i need a script that copies all my selected list items to an other (custom) list. I found nice solution for documents:
var context = SP.ClientContext.get_current();
var web = context.get_web();
...
4
votes
1answer
731 views
backbone.js Model.get() returns undefined, scope using coffeescript + coffee toaster?
I'm writing an app using coffeescript with coffee toaster (an awesome NPM module for stitching) that builds my app.js file.
Lots of my application classes and templates require info about the ...
5
votes
1answer
2k views
NFC standards (NFC Forum, ISO/IEC, ECMA
I am often being asked about standards, the NFC is based on. I summarized my knowledge in the text below. I hope it can be an answer to such questions. Please feel free to correct it by posting ...
0
votes
2answers
101 views
Regex extraction of one letter inside html chunk
Hi need to extract ONE letter from a string.
The string i have is a big block of html, but the part where i need to search in is this text:
Vahvistustunnus M :
And I need to get ...
-7
votes
1answer
106 views
Is pure javascript only useful with the DOM and form validation? [closed]
Is pure javascript only useful with the DOM and form validation?
What are some other uses for it?
11
votes
2answers
384 views
Can I use an empty string as an object identifier?
I've been tinkering with objects and seemingly you can have '' (an empty string) as a property name, like so:
o = {
'': 'hello',
1: 'world',
'abc': ':-)',
};
console.log(o['']);
...
2
votes
3answers
201 views
List of areas missing support for ECMAScript/JavaScript in major browsers?
Is anyone aware of a definitive list of areas of missing support for ECMAScript/JavaScript in the major browsers (I'm talking IE7+, Firefox, Chrome, Safari and Opera).
Obviously we do feature ...
0
votes
1answer
50 views
Problem with giving properties to the index of an array
I believe that I have a simple problem on my hands, yet I cant figure out what is worng with this code. I want to give a property to a javascript array, yet for some reason:
board = [[0], [0], [0]];
...
1
vote
1answer
699 views
Get subsites in Sharepoint ECMAScript
I'm trying to use ECMA script in Sharepoint to data on sites.
It's working well for the top root site when I'm using the SP.ClientContext.get_current() method, but I can't seem to get the subsites of ...
0
votes
0answers
246 views
Is there any good references for implementing a lexer for C#?
I want to implement a lexer for C# (Note not a parser, just a lexer) by C# language.
I don't want to use ANTLR or something like that.
Is there any good references for how to implementing a lexer for ...
3
votes
1answer
93 views
Does Ecma-334 have an incorrect description for next line (C# ECMA Standard)?
In Ecma-334 (C# Language Specification 4th Edition), Annex A. Grammar, Section A.1.1 Line terminators:
new-line::
Carriage return character (U+000D)
Line feed character (U+000A)
Carriage return ...
1
vote
1answer
277 views
Which JavaScript (ECMAScript) version does Java's Rhino implementation implement (and what's the update policy?)
Which version of the ECMAScript standard does Java's JavaScript engine Rhino support, how much work is going into fixing bugs and keeping the implementation in sync with the latest standardized ...
3
votes
1answer
222 views
Understanding ECMAScript implicit semicolons and whitespace parsing
I've seen, very often in fact, this cited as why to use K&R style when writing ECMAScript.
function foo () {
return
{
foo: 1
}
;
}
That doesn't work in ECMAScript or ...
12
votes
1answer
2k views
When will v8 implement ECMAScript 5?
I noticed that v8 is rather mute on the issue of ECMAScript 5th edition.
V8 implements ECMAScript as specified in ECMA-262, 3rd edition, and runs on Windows XP and Vista, Mac OS X 10.5 (Leopard), ...
2
votes
1answer
1k views
Javascript get and set availability in browsers
Which browsers do not support the get and set methods for object prototypes? I believe this is a feature of ES5, an I know it works in Chrome, but I am wondering if it is safe to use for ajax apps. ...
0
votes
3answers
175 views
How can I exclude a string anyhwere in the pattern from matches?
I need to write a regex which will match URLs that do not have a specific query string name/value pair anywhere in its URL. All other query string names, and all other query string values with the ...
2
votes
1answer
100 views
What are the ISO 2375 and 2735 standards mentioned in the ECMA-119 specification?
Out of ECMA-119 specification:
8.5 Supplementary Volume Descriptor
...
8.5.3 Volume Flags (BP 8):
The bits of this field shall be numbered from 0 to 7 starting with the least ...
2
votes
1answer
58 views
Changing Render Kits in Browser
I'm working on a project to develop a cross-browser testing web app. Simply put, I'm tired of having to maintain multiple browsers on the same system and IE in VMware solely for the purpose of ...
1
vote
3answers
546 views
Need regex to match unformatted phone number syntax
I need a regex for Javascript that will match a phone number stripped of all characters except numbers and 'x' (for extension). Here are some example formats:
12223334444
2223334444
2223334444x5555
...
0
votes
1answer
365 views
Theming the iframe scroller bar
All,
In our web application, we have an iFrame that loads SVG. The browser automatically add the scroller bar when the user zooms into the SVG using the controls in our web application. Now we want ...
0
votes
6answers
482 views
Javascript “this” variable confusion
I am currently reading the book "Javascript: The Good Parts" and was playing with Functions.
I produced a test script to test some properties and I am somewhat confused by the results.
Here is the ...
1
vote
3answers
121 views
How to implement C# syntax to use with own platform? ECMA Standard
I want to know, is this possible to use C# language syntax in own platform? I know that C# is ECMA standartized language. So how can it be implemented?
I know there are examples such as Mono & ...

