Topic: The Main Difference between Java Scripts And Java.....
JAVASCRIPTS IS NOT A JAVA:
Java is a compiled language. This means that the Java code must be transformed ("compiled") into a high-level programming language before it can run.
JavaScript is an interpreted language. It doesn't need to be compiled before it is run. In an interpreted language the instructions are parsed (divided into small components that can be analyzed). For instance, as the browser "reads" this page, it breaks down each of the page's components into individual components and interprets each component as it moves down the page. In linguistics it means to divide language into small components that can be analyzed. For example, parsing this sentence would involve dividing it into words and phrases and identifying the type of each component (such as a verb, adjective, or noun).

