Click to See Complete Forum and Search --> : Java - JavaScript


yoh
01-18-2003, 04:58 AM
Newbie here.

What's the difference between Java and JavaScript?

AdamGundry
01-18-2003, 05:28 AM
Java is a compiled language, producing full programs (like Visual Basic or C), though it can produce small programs (called applets) that are embedded into web pages.

Javascript is an interpreted language, used to control web pages. It is less powerful, but doesn't need to be compiled.

Adam

yoh
01-18-2003, 05:54 AM
Thanks!