Re: [JSMentors] JavaScript version vs. ECMAScript version

2011-05-24 Thread Peter van der Zee
On Tue, May 24, 2011 at 4:40 AM, Aaron Godin godin.aa...@gmail.com wrote: Hello JSMentors, My questions is slightly less technical than I have seen in here, but it is regarding versions of JS and ECMA script. Is there some way to know which Javascript versions each of the major browsers are

Re: [JSMentors] JavaScript version vs. ECMAScript version

2011-05-24 Thread Dmitry A. Soshnikov
In addition to Peter's info, here's a recent list of ES engines: http://bga.github.com/list-of-ecmascript-engines/ Perhaps will be useful. Dmitry. On 24.05.2011 12:33, Peter van der Zee wrote: On Tue, May 24, 2011 at 4:40 AM, Aaron Godingodin.aa...@gmail.com wrote: Hello JSMentors, My

Re: Svar: Re: [JSMentors] Re: Zakas Blog == Censored

2011-05-24 Thread Rey Bango
Hey Sean, I understand and respect your points. I just don't happen to agree with them and JSMentors has allowed flexible posting style since it's inception. That's not going to change (as I've mentioned many times before). You're free, though, to post inline as you like. Rey... On Tue, May 24,

Re: [JSMentors] Re: When to use prototype to extend a function?

2011-05-24 Thread Tio Oscar
I do: Var MyClass = function() { This.initialize.apply(this, arguments); } MyClass.staticMethod = function () { } MyClass.prototype = { PrivValue: null, Initialize: function (param) { Console.log(hello world); }, PrivMethod: function(param) {

Re: [JSMentors] JavaScript version vs. ECMAScript version

2011-05-24 Thread Claus Reinke
across the board. The only browser that seems to be lagging behind is Opera, for reasons beyond me. Opera still holds on to ES3. Actually, Opera supports (small) parts of ES5: http://www.opera.com/docs/specs/presto28/ecmascript/ Interesting, though - I never noticed how small those parts