vote up -7 vote down star
1

I'm curious why the big web firms (Yahoo, Google, Netscape) haven't simply specified a new open standard client-side language that makes debugging easy, is strongly typed and object oriented, contains a large collections API and so on to replace JavaScript. The language wouldn't replace JavaScript immediately but slowly, over the years move itself into the next generation browsers.

The various new Javascript interpreters (v8, spidermonkey) make efforts to improve its speed, however as an example the language only got array lookups in version 1.6 - the fact there are so many APIs (JQuery, Prototype, moo, YUI) ontop of the language illustrates my point.

flag
Community wiki, argumentative, subjective. – Filip Ekberg Jan 22 at 12:26
... Seriously? If this isn't subjective and argumentative, I don't know what is. Hell, the body of the question itself is pure flamebait. – Cody Brocious Jan 22 at 12:29
Why does it need to be closed? Surely there's debate to had? – Paul Dixon Jan 22 at 12:39
( "Debate" equals to Argumentative ) equals to Not to be on SO. – Filip Ekberg Jan 22 at 12:40
I think most responses will disagree with the premise, but the ones posted so far are pretty level headed. – Paul Dixon Jan 22 at 12:42
show 42 more comments

closed as subjective and argumentative by Shog9, annakata, Greg, Paolo Bergantino Jan 25 at 18:59

9 Answers

vote up 11 vote down check

Because any replacement would have to:

  • be supported by browsers (good luck getting Microsoft to support it in IE);
  • offer something that Javascript doesn't (and Javascript these days has closures, extension methods, AJAX, etc);
  • have some compelling reason for developers to adopt it.

Frankly I can't see any of these standards being met.

link|flag
I did mention it being an open standard, and it would depend on Microsoft I guess embracing that. en.wikipedia.org/wiki/JavaScript#Versions not many support those features you say, one browser if wikipedia is correct. – Chris S Jan 22 at 12:41
vote up 3 vote down

There is very nearly(1) nothing wrong, and several things very right with JavaScript. Most criticisms reduce to a failure of comprehension (JS libraries are no more reflective of a failure of JS than a Perl library is), personal distaste based on subjective experience (both brought to the table, and with JS), and lack of exposure to the problem domain.

Dynamic weak-typing can be a useful thing. Prototypes are extremely powerful inheritance. First class functions! And the cleanest, most flexible regex and closure implementations as I've seen in any language.

JS dominates the market as the scripting language of choice for the web. Just maybe there's a good reason for that.

(1). Which is to say there are some. But show me any flawless language, and I'll show you an SO post complaining about it.

link|flag
vote up 5 vote down

The reason is that most of the things you believe are wrong about JavaScript aren't, or aren't a problem with the language itself.

  • easy debugging: depends on the implementation, not on the language
  • object oriented: JavaScript IS object oriented, it's just prototype-based rather than class-based
  • large API: you have a point here; the third-party APIs you mention fill the gap in functionality, but it would be nicer if the browser didn't have to download them. Then again, with today's bandwidths, this becoming less and less of a problem
  • The main reason why using a framework is practically required is to patch differences in the browser DOM, and that's again not a problem of the language. There's even a DOM standard, the browsers just don't stick to it - what makes you believe this would be different with a different language
  • strongly typed: yes, that would indeed be better
link|flag
vote up 4 vote down

Well, I could argue it is being replaced to a degree.

Microsoft are trying to take control of that domain with Silverlight, and Adobe have tried for years to corner the market with Flash and friends, and Sun, who have made a rather unsuccessful attempt with JAR applets.

However, there are 2 groups of people who don't want these things and its hurting adoption.

  1. Purist Coders who Don't like mixing html with binary blobs
  2. Web Standards People who prefer usability
  3. End users who can't stand having to install yet another damn plugin.

All this results to this:

There are people putting replacements on the market, but nobody really cares, its not being widely adopted, nobody wants it, sure, they have uses in Niche markets like youtube, but outside sites dedicated to video media people in my experience are generally repulsed ever time they encounter a website with yet-another-annoying-flash ad.

For years we poor 64-bitters have been bitter because there just wasn't any 64 bit support.

And expect flash to start losing a little foothold on the video market once browser-integrated video support becomes properly standardised ( Ogg Video is natively supported in FF3.1 )

Edit : Oh, and ironic note, the most successful JavaScript alternative to date, Flash, internally uses lots and lots of ECMAScript, which is rather a lot like JavaScript ( JavaScript is ECMAScript too ), so its not really replacing it a whole deal, more just a domain specific reimplementation.

link|flag
Microsoft has, with Silverlight, a vested interest in making sure that JS stays in its current place. There's no way you'd get IE to support a new standard that can make their alternative less attractive. – Cody Brocious Jan 22 at 13:05
Good point about Silverlight and adoption – Chris S Jan 22 at 13:28
vote up 2 vote down

The only way Javascript will be replaced is by replacing browsers. If you replace browsers with a new content delivery mechanism where something else makes more sense, people will switch. Expecting that browser developers are going to move away from JS to some new idea without massive benefits from doing so -- primarily content, a chicken and egg problem -- is insane.

link|flag
vote up 1 vote down

Every browser that has so far existed wouldn't support it.

link|flag
vote up 3 vote down

The fact there are so many APIs (JQuery, Prototype, moo, YUI) ontop of the language illustrates my point.

The same arguments you are using against JS would work for C. It's decades old and there are tons of libraries on top of it...would you say C is obsolete?

link|flag
But the base libraries in C (such as strings, IO) have always been there. Try finding an element in the DOM prior to Javascript 1.5. document.all versus Netscape's way. – Chris S Jan 22 at 12:45
@Chris: you're ignoring a huge part of the history of C. And DOM methods have little to do with JS as a language - what makes you think switching languages would also result in complete standardization of DOM implementations? Look at the ongoing struggles to write portable code in any other language – Shog9 Jan 22 at 17:46
vote up 1 vote down

JavaScript has been around for a long, long time and if you were to implement something totaly new, you'd be forced to give support for a LOT of old browsers. So, the easiest path to take nowdays, before people have completed changed to newer browswers which are more modulare, you need to create a "box" for javascript which makes it easier to use.

link|flag
"The language wouldn't replace JavaScript immediately but slowly, over the years move itself into the next generation browsers." – Chris S Jan 22 at 12:42
vote up 2 vote down

Why they haven't made a replacement for HTML?

link|flag
+1 ... while we are making things better let's start from ground up! – Learning Jan 22 at 12:29
Because HTML is the awesomeness. – Filip Ekberg Jan 22 at 12:31
HTML does the job effectively. – Chris S Jan 22 at 12:40
I doubt if somebody wants to reinvents Web in 2009 used the same HTML. It's patched a WHOLE LOT to keep up with today's standards. It's inconsistent, bloated, etc. There are many issues with HTML too. But the point is, it's STANDARD (i.e. everyone uses it) and the same is true for JS. – Mehrdad Afshari Jan 22 at 12:50
HTML hasn't changed since version 4.01 in 2000. XHTML is roughly the same, nothing new has been added for a long time, until HTML5 comes. CSS has improved a lot though - Javascript hasn't which is what I'm saying. – Chris S Jan 22 at 13:02
show 3 more comments

Not the answer you're looking for? Browse other questions tagged or ask your own question.