What's the difference between JavaScript and Java?
15 Answers
Java and Javascript are similar like Car and Carpet are similar.

- 951,095
- 183
- 1,149
- 1,285
-
11Unfortunately, I can't claim originality. I don't recall where I first heard it, however. – Greg Hewgill Nov 12 '08 at 17:56
-
11I prefer the version about ham and hamster. – Kuba Suder Nov 08 '10 at 16:00
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.

- 156,901
- 35
- 231
- 235
Here are some differences between the two languages:
- Java is a statically typed language; JavaScript is dynamic.
- Java is class-based; JavaScript is prototype-based.
- Java constructors are special functions that can only be called at object creation; JavaScript "constructors" are just standard functions.
- Java requires all non-block statements to end with a semicolon; JavaScript inserts semicolons at the ends of certain lines.
- Java uses block-based scoping; JavaScript uses function-based scoping.
- Java has an implicit
this
scope for non-static methods, and implicit class scope; JavaScript has implicit global scope.
Here are some features that I think are particular strengths of JavaScript:
- JavaScript supports closures; Java can simulate sort-of "closures" using anonymous classes. (Real closures may be supported in a future version of Java.)
- All JavaScript functions are variadic; Java functions are only variadic if explicitly marked.
- JavaScript prototypes can be redefined at runtime, and has immediate effect for all referring objects. Java classes cannot be redefined in a way that affects any existing object instances.
- JavaScript allows methods in an object to be redefined independently of its prototype (think eigenclasses in Ruby, but on steroids); methods in a Java object are tied to its class, and cannot be redefined at runtime.

- 219,335
- 46
- 382
- 435
-
82 years late, but thank you so much for this thoughtful explanation. It's way more useful and informative than the selected answer, and deserves far more votes IMO – Eric Hu Mar 31 '11 at 21:29
-
2I upvote both in such cases. We need the right answer, but holy shmoly, geeks like us we really need more of this humor – Michael Durrant Nov 15 '11 at 12:58
-
You might also here strongly-typed and loosely-typed instead of statically-typed and dynamically-typed. – San Dec 14 '11 at 14:56
Take a look at the Wikipedia link
JavaScript, despite the name, is essentially unrelated to the Java programming language, although both have the common C syntax, and JavaScript copies many Java names and naming conventions. The language was originally named "LiveScript" but was renamed in a co-marketing deal between Netscape and Sun, in exchange for Netscape bundling Sun's Java runtime with their then-dominant browser. The key design principles within JavaScript are inherited from the Self and Scheme programming languages.

- 49,809
- 17
- 109
- 135
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.

- 52,890
- 7
- 50
- 59
-
8Javascript was originally called Livescript, and the world would probably be a better place today if they hadn't renamed it! – Greg Hewgill Oct 28 '08 at 22:13
-
2I doubt it was to cause confusion - what's the benefit to the company of that? I suspect the _intent_ was to ride on the success of Java, although the _effect_ was what you stated. – paxdiablo Oct 28 '08 at 22:58
-
"ride the success of java" by calling something unrelated with a similar name? That sounds very much like "causing confusion for marketing purposes" to me. – ddaa Oct 28 '08 at 23:04
-
2Sun tried this naming trick again with the "Sun Java Desktop", which was essentially a branded version of Gnome and had nothing to do with Java. – Dan Dyer Oct 29 '08 at 00:07
-
@Pax - Put another way, it confused the unwary into thinking it had something to do with Java, the buzzword of the day. – Kirk Strauser Oct 29 '08 at 00:47
-
1Yeah, and it worked. @Greg Hewgill, the world might be a better place, but Javascript probably wouldn't be where it is today. – Dan Rosenstark Jan 12 '09 at 05:32
-
@Just Some Guy - Well said. I improved my answer by adding some of your wit. – ddaa Nov 15 '09 at 01:01
-
The reason they changed the name was to in some way pacify Sun who at that point were involved with Netscape – Toby Allen Jul 05 '11 at 19:15

- 83,810
- 28
- 209
- 234

- 3,838
- 1
- 25
- 18
-
1
-
It comes from a big hamster; it's so big that you could confuse it with a pig. `;)` – apaderno Mar 20 '12 at 19:35
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:
A common misconception is that JavaScript is similar or closely related to Java; this is not so. Both have a C-like syntax, are object-oriented, are typically sandboxed and are widely used in client-side Web applications, but the similarities end there. Java has static typing; JavaScript's typing is dynamic (meaning a variable can hold an object of any type and cannot be restricted). Java is loaded from compiled bytecode; JavaScript is loaded as human-readable code. C is their last common ancestor language.

- 398,270
- 210
- 566
- 880
-
2Javascript isn't just for HTML pages, Java6 now includes it, BIRT uses it for report scripting - I'm sure that there are other non-HTML uses beyond these two. – paxdiablo Oct 28 '08 at 22:56
-
You're right. With the development of Rhino, and some of the other developments you mentioned, Javascript has come pretty far out of the browser sandbox. – Bill the Lizard Dec 30 '08 at 14:24
-
2Scripting is simply one particular kind of programming... instead you should say perhaps that Java is a compiled programming language and javascript is a scripting or interpreted programming language. – Blacktiger Aug 23 '10 at 18:38
In addittion to being entirely different languages, in my experience:
- Java looks nice at first, later it gets annoying.
- JavaScript looks awful and hopeless at first, then gradually you really start to like it.
(But this may just have more to do with my preference of functional programming over OO programming... ;)

- 5,077
- 2
- 28
- 41
Everything. They're unrelated languages.

- 30,189
- 5
- 49
- 65
-
*Punches in the arm*. According to wikipedia, I am required to do so after you jinxed me and before I can speak again. http://en.wikipedia.org/wiki/Jinx – ddaa Oct 28 '08 at 22:22
-
2
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.

- 8,693
- 3
- 36
- 54
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.

- 2,574
- 3
- 24
- 26
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.

- 224,032
- 165
- 485
- 680
Don't be confused with name..
Java was created at Sun Microsystems (now Oracle).
But, JavaScript was created at Netscape (now Mozilla) in the early days of the Web, and technically, “Java-Script” is a trademark licensed from Sun Microsystems used to describe
Netscape’s implementation of the language. Netscape submitted the
language for standardization to ECMA (European Computer Manufacturer’s Association)
and because of trademark issues, the standardized version of the language
was stuck with the awkward name “ECMAScript.” For the same trademark reasons,
Microsoft’s version of the language is formally known as “JScript.” In practice, just
about everyone calls the language JavaScript. The real name is “ECMAScript”.
Both are fully different languages!!!

- 213
- 5
- 16
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.

- 2,349
- 3
- 21
- 21
A Re-Introduction to Javascript by the Mozilla team (they make Firefox) should explain it.

- 8,233
- 9
- 59
- 70