Posts

Showing posts from December, 2020

JavaScript Tutorial

Image
JavaScript first class Introduction to JavaScript JavaScript is a dynamic computer Programming language. It is a lightwight an most commonly used as a part of web pages. The program in this language is called script.It can be written within a html file and run autometically as the page loads. JavaScript can execute not only in the browser, but also on the server, or actually on any device that has a special program called the JavaScript engine. Javascript can be used for both backend and frontend development such as ReactJs can be used for frontend development and Nodejs can be used for backend development. 1. Lecture first First program of JavaScript JavaScript code Should be written inside script tag It's case sensitive and always needs a Semicolon JavaScript is a case sesitive laguage and it requires semicolon to end each statement...