Lecture 1: Basic properties of Javascript
JavaScript (JS) is a lightweight interpreted (or just-in-time compiled) programming language with first-class functions. While it is most well-known as the scripting language for Web pages, many non-browser environments also use it, such as Node.js, Apache CouchDB and Adobe Acrobat. It is dynamic programming language which make it different from others, it is not like the C, C#, C++, Java, Ruby, ... etc. It gives you so much flexibility in every aspect of coding, ----------------------------------------------------- let's have a look ---------------------------------------------------- So, first of all we have some functionality, we will understand everything one by one, but just for now, you have to trust the process and keep going, so - console.log("This is shaan"); - it makes your browser to print the line "This is shaan" in your browser's console and you can see that happening by open the console and For open the console, you have to open your browse...