What's the difference between JavaScript and Java?
Asked Answered
I

15

76

What's the difference between JavaScript and Java?

Ivonne answered 28/10, 2008 at 22:10 Comment(0)
A
573

Java and Javascript are similar like Car and Carpet are similar.

Aminoplast answered 28/10, 2008 at 22:12 Comment(2)
Unfortunately, I can't claim originality. I don't recall where I first heard it, however.Aminoplast
I prefer the version about ham and hamster.Decima
A
408

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.

Afloat answered 28/10, 2008 at 22:14 Comment(0)
T
188

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.
Tetanus answered 28/10, 2008 at 22:12 Comment(3)
2 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 IMONeo
I upvote both in such cases. We need the right answer, but holy shmoly, geeks like us we really need more of this humorUlcerative
You might also here strongly-typed and loosely-typed instead of statically-typed and dynamically-typed.Insensibility
D
51

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.

Disputant answered 28/10, 2008 at 22:17 Comment(0)
M
38

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.

Merbromin answered 28/10, 2008 at 22:11 Comment(8)
Javascript was originally called Livescript, and the world would probably be a better place today if they hadn't renamed it!Aminoplast
I 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.Galinagalindo
"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.Merbromin
Sun 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.Tango
@Pax - Put another way, it confused the unwary into thinking it had something to do with Java, the buzzword of the day.Ewer
Yeah, and it worked. @Greg Hewgill, the world might be a better place, but Javascript probably wouldn't be where it is today.Dodi
@Just Some Guy - Well said. I improved my answer by adding some of your wit.Merbromin
The reason they changed the name was to in some way pacify Sun who at that point were involved with NetscapeCozen
D
24

enter image description here
Java is to JavaScript as ham is to hamster

Deluge answered 3/3, 2011 at 17:40 Comment(2)
Where do you think ham comes from? ;)Bigod
It comes from a big hamster; it's so big that you could confuse it with a pig. ;)Mousetrap
B
23

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.

Bigod answered 28/10, 2008 at 22:16 Comment(3)
Javascript 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.Galinagalindo
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.Bigod
Scripting 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.Fujimoto
W
17

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... ;)

Wandawander answered 7/12, 2008 at 9:49 Comment(0)
E
14

Everything. They're unrelated languages.

Ewer answered 28/10, 2008 at 22:11 Comment(2)
Punches in the arm. According to wikipedia, I am required to do so after you jinxed me and before I can speak again. en.wikipedia.org/wiki/JinxMerbromin
You misread that - I get to punch you now. And get me my Coke.Ewer
O
8

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.

Ornis answered 28/10, 2008 at 22:14 Comment(0)
B
5

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.

Barely answered 29/10, 2008 at 19:43 Comment(0)
N
2

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.

Necrophobia answered 28/10, 2008 at 22:18 Comment(0)
I
2

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!!!

Incommensurable answered 31/10, 2011 at 18:51 Comment(0)
H
1

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.

Homophone answered 11/1, 2010 at 13:42 Comment(0)
C
0

A Re-Introduction to Javascript by the Mozilla team (they make Firefox) should explain it.

Cellophane answered 12/9, 2010 at 23:8 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.