Difference between Java and JavaScript.


As we know both Java and javascript are the programming languages and used in application development. But there are significant differences between both of the languages which we will discuss below.

The following are the important differences between Java and JavaScript.

Sr. No.KeyJavaJavaScript
1Language TypeJava is primarily an object-oriented programming language that requires a virtual machine platform for its execution.JavaScript is a lightweight programming language(“scripting language”) and used to make web pages that do not require such virtual environment for its execution.
2Syntax and semanticsJava is a type of language where compiler reports exception in case syntax does not meet the requirement or we can say type and code semantics get checked at compile time.On the other hand JavaScript has weakly typed language and has more relaxed syntax and rules.
3Oops ConceptJava is a pure object-oriented programming language.Javascript on the other hand is an object-based scripting language.
4JVM requirementJava requires JVM in order to create a virtual environment for its code execution.On the other hand code of javascript runs on browser only so no such JVM is being required for code execution.
5File extensionOne difference between both is the extension of file in which java code is saved is ".java".While code of javascript get saved in file which has extension of ".js"
6Performance and memory consumptionAs we know java requires JVM which makes it to consume more memory and slower in performance of code execution.Each time we need to deploy the code for reflecting the code change in java.On other hand javascript code get compiled and run on browser only and thus consumes less memory and fast in performance.Each time we not need to deploy the code for reflecting the code change in javascript.

Updated on: 18-Sep-2019

736 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements