.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Many people think that java and javascript are similar language but it’s not. java is a Object Oriented Programming language while javascript is scripting language mainly used for making web pages interactive.
Java used for making Mobile or desktop application that can run on various devices from mobiles phones to large enterprise servers.
Java is strongly typed language, means you need to define the type of variable (A container which holds the value while the java program is executed) like int, String, char etc
Javascript is loosely typed, it means variable can hold any type of data. You don’t need to define datatype.
Java is a compiled language. Firstly, java code is compiled into bytecode, which is then executed by Java Virtual Machine (JVM) while Javascript is an interpreted language, it’s code usually executed directly by runtime environment OR browser withought compilation.
Java has rich set of libraries and frameworks for various domain such as Android SDK (for mobile Developement), Spring (for Enterprise Application) and Hibernate (for Database management).