Member-only story
Difference between a Scripting Language and a Programming Language

If you are into coding for a quite good amount of time then you must have heard of these terms. Whenever we talk about any loosely typed language
then most of the time we say that it must be a Scripting Language, like JavaScript, Python, etc.
And when we talk about strictly typed language
then we refer to them as Programming Language, like C, C++, Java, etc.
💡 If you don’t know why we use terms loosely typed language and strictly typed language then,
Loosely typed languages are those languages in which while declaring a variable we don’t have to specify that the variable will store a number type value, or string type value, or any other. like JavaScript, Python.
While strictly typed languages are those languages in which at the time of the declaration of a variable, we specify what type of value the variable will store. It will be a number type, or string type, or any other. like C++, Java.
But being strictly typed
or loosely typed
is not the only difference between a scripting language and a programming language.
➡️ Another difference between a scripting language and a programming language is that one is compiled
and the other is interpreted
.
In programming languages, like C++, and Java, to run a program there is a two-step process.
- Step One: compile your code and generate a machine-readable version of it.
- Step Two: run that machine-readable version to get your result.
So, we say that these languages are compiled languages
. We have to compile them first, to get our desired result.
While in the case of scripting languages, like JavaScript, we write our code and then directly see the result on the browser (if you are writing JavaScript on the client side). So, we do not have to do anything from our side to run the script. Though the browser, in this case, will execute the code line by line and will the result.
That’s why we say that these languages are interpreted language
.