473,396 Members | 2,129 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

New Firefox 2.0 Upgrade has Increased JavaScript Support

I just installed the new Firefox 2.0 browser without problems. This is
a major upgrade, and you need to go to the Firefox site and read the
release notes before you download it. There are a few known issues and
likely to be some more for such a major upgrade. The 2.0 now supports
JavaScript 1.7. Firefox gives the following brief summary:

JavaScript 1.7: JavaScript 1.7 is a language update introducing several
new features such as generators, iterators, array comprehensions, let
expressions, and destructuring assignments. It also includes all the
features of JavaScript 1.6.

Oct 25 '06 #1
7 1422
cwdjrxyz wrote:
I just installed the new Firefox 2.0 browser without problems.
The 2.0 now supports
JavaScript 1.7. Firefox gives the following brief summary:

JavaScript 1.7: JavaScript 1.7 is a language update introducing several
new features such as generators, iterators, array comprehensions, let
expressions, and destructuring assignments. It also includes all the
features of JavaScript 1.6.

See <http://developer.mozilla.org/en/docs/New_in_JavaScript_1.7for a
more detailed description of changes to the core JavaScript language.

--

Martin Honnen
http://JavaScript.FAQTs.com/
Oct 25 '06 #2
Martin Honnen <ma*******@yahoo.dewrites:
cwdjrxyz wrote:
>I just installed the new Firefox 2.0 browser without problems.
>The 2.0 now supports
JavaScript 1.7. Firefox gives the following brief summary:

JavaScript 1.7: JavaScript 1.7 is a language update introducing several
new features such as generators, iterators, array comprehensions, let
expressions, and destructuring assignments. It also includes all the
features of JavaScript 1.6.


See <http://developer.mozilla.org/en/docs/New_in_JavaScript_1.7for a
more detailed description of changes to the core JavaScript language.
If anyone here is familiar with Common Lisp, he'll probably have
noticed that JavaScript 1.7 continues borrowing many sexy
features from C.L., as have done some other of today's languages:

- Let forms
- Multiple return values
- more looping forms

(and some other features of other languages as well)

Nice!

Arnaud

>
--

Martin Honnen
http://JavaScript.FAQTs.com/
--
Arnaud DIEDEREN
Software Developer
IONIC Software
Rue de Wallonie, 18 - 4460 Grace-Hollogne - Belgium
Tel: +32.4.3640364 - Fax: +32.4.2534737
mailto:ad@ionicsoft.com
http://www.ionicsoft.com
Oct 25 '06 #3
sp
Whether this will be used somewhere out of local-hosted experiments?
Will it be faster and more powerful enough to make different versions
of code for different browsers?
Will scripts look like
if (FF) {
// 1.7
} else {
// document.all
}

I mean, isn`t the situation with HTML and CSS standarts going to
repeat, when because of IE`s lack of support for new features we
(still) have to use old methods?

Oct 26 '06 #4

cwdjrxyz wrote:
I just installed the new Firefox 2.0 browser without problems. This is
a major upgrade, and you need to go to the Firefox site and read the
release notes before you download it. There are a few known issues and
likely to be some more for such a major upgrade. The 2.0 now supports
JavaScript 1.7. Firefox gives the following brief summary:

JavaScript 1.7: JavaScript 1.7 is a language update introducing several
new features such as generators, iterators, array comprehensions, let
expressions, and destructuring assignments. It also includes all the
features of JavaScript 1.6.
wow, interesting!
The only sad thing is that this cool features will be used only for XUL
applications because IE will never support them.

Val Polyakh
http://trickyscripter.com

Oct 26 '06 #5
VK

Arnaud Diederen aundro wrote:
If anyone here is familiar with Common Lisp, he'll probably have
noticed that JavaScript 1.7 continues borrowing many sexy
features from C.L., as have done some other of today's languages:

- Let forms
<snip>

For me LET statement first associated with Basic languages, so I was
surprised to see it instead of more casual
int i = i;
but however they called it - most importantly it's here now.

I'm more curious if Mozilla is planning to adopt conditional
compilation mechanics implemented in IE. Otherwise most part of these
"sexy features" will be useless for years. I searched mozilla.org but
it seems dead silent on the matter.

Oct 26 '06 #6
"VK" <sc**********@yahoo.comwrites:
I'm more curious if Mozilla is planning to adopt conditional
compilation mechanics implemented in IE. Otherwise most part of these
"sexy features" will be useless for years.
I'm wondering who would write code that's to be available on the web
(i.e., a website :D ) using those new features indeed.
All one can hope is that Microsoft, the Opera guys, and all others
will adopt those features.. which is less than certain.

A.
I searched mozilla.org but
it seems dead silent on the matter.
--
Arnaud DIEDEREN
Software Developer
IONIC Software
Rue de Wallonie, 18 - 4460 Grace-Hollogne - Belgium
Tel: +32.4.3640364 - Fax: +32.4.2534737
mailto:ad@ionicsoft.com
http://www.ionicsoft.com
Oct 27 '06 #7
cwdjrxyz wrote:

<snip>
JavaScript 1.7: JavaScript 1.7 is a language update introducing several
new features such as generators, iterators, array comprehensions, let
expressions, and destructuring assignments. It also includes all the
features of JavaScript 1.6.
Will these additions open up any new possiblilities?

Will these changes make code easier to write, read and maintain? Maybe
the mulitple return values will clean up some bits of code.

Is "let" statement just as awkward as "with"?

Who invents these changes?

Will ECMAScript 4 definitely include all these additions?

Peter

Nov 2 '06 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
by: niconedz | last post by:
Hi The following code works fine in IE but not Firefox. It's a little script that zooms an image and resizes the window to fit. Can anybody tell me what's wrong? Thanks Nico == btw.....
6
by: Mark Olbert | last post by:
The doPostBack javascript functioning is not submitting the page when called by linkbuttons (or an autopostback checkbox, for that matter). I'm aware of a problem with Netscape browsers and the...
12
by: Brad | last post by:
Does anyone have any other solutions to the Firefox rendering problems with ASP.NET? I've tried the <browsercaps> web.config trick. It didn't work. Am I overlooking something else? Thanks!
13
by: Giggle Girl | last post by:
Hi there, I am having a problem with the behavior of Firefox, where lefthand column content is not resized properly after it is "collapsed" and then "re-expanded". An online demo is available...
1
by: yeukwing | last post by:
Hi all, I've an application that overlap some map images. I'm testing it in IE 6 and firefox 1.5 In IE, all scripts execute perfectly and i've 3 map images running, In firefox, when there...
11
by: Krij | last post by:
Hi! Here's a training case at school. The function will animate a table cell in IE: function chgColor(){ var thistag, parenttag; thistag = window.event.srcElement.tagName; if(thistag ==...
2
alexphd
by: alexphd | last post by:
This code works in firefox perfectly, but in Internet Explorer it does not calculate the total correctly. Anybody know why? <!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01//EN"...
2
by: crumsoft | last post by:
hello every one i have face some problem related to css. my css file work good in firefox but not looking so good and work properly in internet explorer 6.0 plz help me and solve this problem....
3
by: SAL | last post by:
Hello, I did google this issue and found some stuff related to BrowserCaps section of either web.config or machine.config but it didn't work. It seems that most pages in my webapp are okay but a...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.