vote up 4 vote down star
7

The question says it all.

flag

74% accept rate

11 Answers

vote up 140 vote down check

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

link|flag
Awesome answer. I need to remember it! – Rontologist Oct 28 '08 at 22:13
from ddaa import wit # I wish I had come up with that one! – ddaa Oct 28 '08 at 22:14
Very good answer! – Guy Oct 28 '08 at 22:56
3  
Great answer, but the fact that you earned over 690 rep just for this shows a big flaw in StackOverflow's rep system. – unforgiven3 Dec 30 at 14:24
1  
I would vote this up twice if I could. Great analogy! – Tim Jun 15 at 14:11
show 10 more comments
vote up 79 vote down

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.

link|flag
1  
Overtly trollish, but somewhat funny. – ddaa Oct 28 '08 at 22:15
1  
Gave me a chuckle. Enough for +1 – Rik Oct 28 '08 at 22:16
1  
If we could do categorical votes, I'd vote +1 funny, but otherwise, meh. – Don Wakefield Oct 28 '08 at 22:16
2  
I was about to berate you for dissing Javascript when it had come so far in the last few years. Then I rid the second paragraph and L'dOL. But, hang on a mo, Java is my main income earner... :-) – paxdiablo Oct 28 '08 at 22:55
3  
It's sad that I can only upvote once. This is going on my Facebook profile somewhere... – Stuart B Feb 10 at 5:37
show 7 more comments
vote up 30 vote down

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.
link|flag
vote up 21 vote down

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.

link|flag
vote up 13 vote down

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.

link|flag
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. – 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 at 14:24
vote up 9 vote down

Everything.

JavaScript was named this way by Netscape to cause confusion, and it succeeded.

The two languages are entirely distinct.

link|flag
Javascript 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
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. – 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
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. – Dan Dyer Oct 29 '08 at 0:07
@Pax - Put another way, it confused the unwary into thinking it had something to do with Java, the buzzword of the day. – Just Some Guy Oct 29 '08 at 0:47
show 1 more comment
vote up 8 vote down

Everything. They're unrelated languages.

link|flag
Everything. Snap! – ddaa Oct 28 '08 at 22:12
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/Jinx – ddaa Oct 28 '08 at 22:22
You misread that - I get to punch you now. And get me my Coke. – Just Some Guy Oct 29 '08 at 0:45
vote up 3 vote down

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.

link|flag
vote up 1 vote down

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.

link|flag
vote up 0 vote down

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.

link|flag
vote up 0 vote down

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

link|flag

Your Answer

Get an OpenID
or

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