What is the difference between JavaScript and Java

+1 vote
Jun 29, 2018 in Java by sharth
• 3,370 points
1,327 views

1 answer to this question.

0 votes

image

This quote rightly explains that 2 totally different things cannot be compared.

Some of the major differences between Java and JavaScript are as follows:

Java:

· It is an OOP programming language

· Code is compiled before execution

· Runs on a virtual machine or a browser

· Static type checking

JavaScript:

· It is an OOP scripting language

· Runs on a browser ONLY

· Code is interpreted / Just in Time(JIT) compiled before execution

· Dynamic type checking

answered Jun 29, 2018 by Daisy
• 8,140 points

Related Questions In Java

0 votes
2 answers

What is the difference between Set and List in java?

List is an ordered sequence of elements. ...READ MORE

answered Apr 26, 2018 in Java by Akrati
• 3,190 points
64,217 views
0 votes
2 answers

What is the difference between getAttribute() and getParameter() in java?

getParameter() returns http request parameters. Those passed from ...READ MORE

answered Aug 28, 2019 in Java by Sirajul
• 59,190 points
24,168 views
0 votes
2 answers

What is the difference between Type List and type ArrayList in Java

By List, you actually tell, that your object ...READ MORE

answered Aug 28, 2019 in Java by Sirajul
• 59,190 points
3,294 views
0 votes
1 answer

What is the difference between getPath(), getAbsolutePath() and getCanonicalPath() in Java?

getPath() - returns a String which denotes the ...READ MORE

answered Jul 26, 2018 in Java by Mrunal
• 680 points
2,592 views
0 votes
1 answer