What's the difference between JavaScript and Java? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-01T13:26:20Z http://stackoverflow.com/feeds/question/245062 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java 8 What's the difference between JavaScript and Java? Guy 2008-10-28T22:10:11Z 2009-11-15T01:00:06Z <p>The question says it all.</p> http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/245065#245065 8 Answer by Just Some Guy for What's the difference between JavaScript and Java? Just Some Guy 2008-10-28T22:11:54Z 2008-10-28T22:11:54Z <p>Everything. They're unrelated languages.</p> http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/245066#245066 9 Answer by ddaa for What's the difference between JavaScript and Java? ddaa 2008-10-28T22:11:54Z 2009-11-15T01:00:06Z <p>Everything.</p> <p>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.</p> <p>The two languages are entirely distinct.</p> http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/245068#245068 152 Answer by Greg Hewgill for What's the difference between JavaScript and Java? Greg Hewgill 2008-10-28T22:12:15Z 2008-10-28T22:12:15Z <p>Java and Javascript are similar like Car and Carpet are similar.</p> http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/245069#245069 35 Answer by Chris Jester-Young for What's the difference between JavaScript and Java? Chris Jester-Young 2008-10-28T22:12:35Z 2009-08-04T02:02:30Z <p>Here are some differences between the two languages:</p> <ul> <li>Java is a statically typed language; JavaScript is dynamic.</li> <li>Java is class-based; JavaScript is prototype-based.</li> <li>Java constructors are special functions that can only be called at object creation; JavaScript "constructors" are just standard functions.</li> <li>Java requires all non-block statements to end with a semicolon; JavaScript inserts semicolons at the ends of certain lines.</li> <li>Java uses block-based scoping; JavaScript uses function-based scoping.</li> <li>Java has an implicit <code>this</code> scope for non-static methods, and implicit class scope; JavaScript has implicit global scope.</li> </ul> <p>Here are some features that I think are particular strengths of JavaScript:</p> <ul> <li>JavaScript supports closures; Java can simulate sort-of "closures" using anonymous classes. (Real closures may be supported in a future version of Java.)</li> <li>All JavaScript functions are variadic; Java functions are only variadic if explicitly marked.</li> <li>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.</li> <li>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.</li> </ul> http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/245073#245073 83 Answer by Shog9 for What's the difference between JavaScript and Java? Shog9 2008-10-28T22:14:08Z 2008-10-28T22:14:08Z <p>One is essentially a toy, designed for writing small pieces of code, and traditionally used and abused by inexperienced programmers.</p> <p>The other is a scripting language for web browsers.</p> http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/245076#245076 3 Answer by Don Wakefield for What's the difference between JavaScript and Java? Don Wakefield 2008-10-28T22:14:45Z 2008-10-28T22:14:45Z <p>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.</p> http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/245083#245083 13 Answer by Bill the Lizard for What's the difference between JavaScript and Java? Bill the Lizard 2008-10-28T22:16:43Z 2008-12-30T14:22:47Z <p>JavaScript is an object-oriented <em>scripting</em> language that allows you to create dynamic HTML pages, allowing you to process input data and maintain data, usually within the browser.</p> <p>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.</p> <p>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.</p> <p>Also, this is directly from the Wikipedia <a href="http://en.wikipedia.org/wiki/JavaScript" rel="nofollow">Javascript article</a>:</p> <blockquote> <p>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.</p> </blockquote> http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/245088#245088 22 Answer by toolkit for What's the difference between JavaScript and Java? toolkit 2008-10-28T22:17:20Z 2008-10-28T22:17:20Z <p>Take a look at the <a href="http://en.wikipedia.org/wiki/JavaScript" rel="nofollow">Wikipedia link</a> </p> <blockquote> <p>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.</p> </blockquote> http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/245090#245090 1 Answer by Claudiu for What's the difference between JavaScript and Java? Claudiu 2008-10-28T22:18:07Z 2008-10-28T22:18:07Z <p>They have nothing to do with each other.</p> <p>Java is statically typed, compiles, runs on its own VM.</p> <p>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.</p> <p>They are also somewhat similar in syntax, but that's about it.</p> http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/248151#248151 0 Answer by Darcy Casselman for What's the difference between JavaScript and Java? Darcy Casselman 2008-10-29T19:43:55Z 2008-10-29T19:43:55Z <p>Like everybody's saying, they're pretty much entirely different.</p> <p>However, if you need a <em>scripting</em> language for your <em>Java</em> 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. </p> http://stackoverflow.com/questions/245062/whats-the-difference-between-javascript-and-java/347435#347435 0 Answer by Stein Gauslaa Strindhaug for What's the difference between JavaScript and Java? Stein Gauslaa Strindhaug 2008-12-07T09:49:48Z 2008-12-07T09:49:48Z <p>In addittion to being entirely different languages, in my experience:</p> <ul> <li>Java looks nice at first, later it gets annoying.</li> <li>JavaScript looks awful and hopeless at first, then gradually you really start to like it.</li> </ul> <p>(But this may just have more to do with my preference of functional programming over OO programming... ;)</p>