show/hide this revision's text 2 Add more points of difference between the two languages :-P

Quick list off

Here are some differences between the top of my head. two languages:-)

  • Java is a statically typed language, ; JavaScript is dynamic.
  • Java doesn't support 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 closuresyet ; Java can simulate sort-of "closures" using anonymous classes. (though that's coming out Real closures may be supported in JDK 7, perhaps), 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 full support immediate effect for closuresall referring objects. Java is class-based, classes cannot be redefined in a way that affects any existing object instances.
  • JavaScript is prototype-basedallows 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.
  • show/hide this revision's text 1

    Quick list off the top of my head. :-)

    • Java is a statically typed language, JavaScript is dynamic.
    • Java doesn't support closures yet (though that's coming out in JDK 7, perhaps), JavaScript has full support for closures.
    • Java is class-based, JavaScript is prototype-based.