Posts

Features of JavaScript

Image
JS has many features which make it more interesting and the main idea of this blog is to make you aware of what exactly is JS capable of and to witness the key core parts of JS. JavaScript has the following features  High Level Any programing language that runs on the system needs the hardware  RAM/Processor etc. For ex. in the C language, developers manage the resources and handle the exception with the help of try-catch block, whereas in JS,   Python we don't have to worry about it. We don't have to manage the resources here Abstraction takes care of this task and managing resources is been handled automatically. But the -ve part is our code won't be as fast as C language code i.e fast and efficient.           Garbage Collection   JS Engine Automatically removes all the old, unused objects, from the computer memory. Hence we do not have to clean our code manually.   Interpreted or Just-in-time Compiled  As Processor...