The question says it all.
|
10
|
|
|
|
|
|
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
|
||
|
|
|
|
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:
|
||||
|
|
|
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. |
||||||||||
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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. |
||
|
|
|
|
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... ;) |
||
|
|
