We had seen introduction to Javascript in our last session, and we are going to see, installation required in order to work with Javascript programming. This is a 4 step process.
We can either use an online IDE or we can download an IDE and install it. Visual Studio Code is one such IDE which can be downloaded and installed. replit is one AI based Online IDE which we can use online.
If we use an online IDE, We don’t need to download and install Node js, but if we are using VS Code, then we need to download and install Node js.
We don’t need to install npm seperately, when we install node js, then npm gets installed automatically. We can just check the version of npm in command prompt by using npm -version, npm -v, npm –version commands.
Whenever we have to create a Javascript project in our desktop, then we will have to follow some steps for that.
Now, Our Project is setup and we can start writing our Javascript programs.
We have covered below topics in this session.
Objects, Classes and Constructor in Javascript Classes and Objects A class in any programming language…
We will start from object oriented programming basics like What are different concepts in Object…
Why we can not over ride a Constructor This is a very important question, that,…
What is Arrow Function In the last session, We had discussed about Anonymous Function. Anonymous…
What is Anonymous Function Anonymous Function is a type of function which has no name…
What is Map, Reduce and Filter Map Filter and Reduce are higher order methods for…