DEV Community

Cover image for An Intro to JavaScript.
Sai Chandu
Sai Chandu

Posted on

An Intro to JavaScript.

Hi everyone,Today we will discuss about the World's popular Programming Language to develop Web Applications is JavaScript.

We have HTML,CSS to design Web Applications, but to make an interaction javascript will take care of that.

It is a scripting language that enables to create dynamically updating content, control multimedia, animate images, and everything else.

How To include Javascript in HTML?

Image description

We use script tag to include javascript file into the html.

Features of JavaScript:

Client Side: It supplies objects to control a browser with DOM(Document Object Model). To make this easy there are some libraries like ReactJS,Angular JS, Vue JS.

Server Side: It supplies objects relevant to running JavaScript on a server. To make it possible it has framework called Node JS.

Dynamic Type: It means types of the variables are defined based on the stored value.

Platform Independent: It means that you can simply write the script once and run it anywhere and anytime.

Prototype-based Language: It uses prototypes instead of classes or inheritance means we can define an object prototype, and then more objects can be created using object prototype.

This is a brief Introduction to JavaScript, we can learn more in coming days.
See you soon😊😊😊

Top comments (0)