What's the difference between JavaScript and Java?
|
|
locked by Robert Harvey♦ Mar 20 '12 at 20:40
This question exists because it has historical significance, but it is not considered a good, on-topic question for this site, so please do not use it as evidence that you can ask similar questions here. This question and its answers are frozen and cannot be changed. More info: FAQ.
|
Java and Javascript are similar like Car and Carpet are similar. |
|||||||||||||||||||||
|
|
One is essentially a toy, designed for writing small pieces of code, and traditionally used and abused by inexperienced programmers. The other is a scripting language for web browsers. |
|||||||||||||||||||||
|
|
Here are some differences between the two languages:
Here are some features that I think are particular strengths of JavaScript:
|
|||||||||||
|
|
Take a look at the Wikipedia link
|
|||
|
|
|
Everything. JavaScript was named this way by Netscape to confuse the unwary into thinking it had something to do with Java, the buzzword of the day, and it succeeded. The two languages are entirely distinct. |
|||||||||||||||||||
|
|
|
|||||||
|
|
JavaScript is an object-oriented scripting language that allows you to create dynamic HTML pages, allowing you to process input data and maintain data, usually within the browser. Java is a programming language, core set of libraries, and virtual machine platform that allows you to create compiled programs that run on nearly every platform, without distribution of source code in its raw form or recompilation. While the two have similar names, they are really two completely different programming languages/models/platforms, and are used to solve completely different sets of problems. Also, this is directly from the Wikipedia Javascript article:
|
|||||||||||
|
|
In addittion to being entirely different languages, in my experience:
(But this may just have more to do with my preference of functional programming over OO programming... ;) |
|||||
|
|
Everything. They're unrelated languages. |
|||||||||
|
|
They are independent languages with unrelated lineages. Brendan Eich created Javascript originally at Netscape. It was initially called Mocha. The choice of Javascript as a name was a nod, if you will, to the then ascendant Java programming language, developed at Sun by Patrick Naughton, James Gosling, et. al. |
|||
|
|
|
Like everybody's saying, they're pretty much entirely different. However, if you need a scripting language for your Java application, Javascript is actually a really good choice. There are ways to get Javascript running in the JVM and you can access and manipulate Java classes pretty seamlessly once you do. |
|||
|
|
|
They have nothing to do with each other. Java is statically typed, compiles, runs on its own VM. Javascript is dynamically typed, interpreted, and runs in a browser. It also has first-class functions and anonymous functions, which Java does not. It has direct access to web-page elements, which makes it useful for doing client-side processing. They are also somewhat similar in syntax, but that's about it. |
|||
|
|
|
Don't be confused with name.. Both are fully different languages!!! |
||||
|
|
|
Practically every PC in the world sells with at least one JavaScript interpreter installed on it. Most (but not "practically all") PCs have a Java VM installed. |
|||
|
|
|
A Re-Introduction to Javascript by the Mozilla team (they make Firefox) should explain it. |
|||
|
|
