DEV Community

rishichitnis007
rishichitnis007

Posted on

Intro to Javascript

Javascript is a programming language used for web development and websites. It is mostly used with HTML and CSS. It is able to calculate data and update both HTML and CSS.

Javascript can be used to change HTML content by tweaking the code a little bit. It can also change HTML Attribute Values. A classic example is turning on and off a lightbulb.

Most beginners use the Hello World program, which is basically a simple way to get started with any programming language.

For Javascript, here's as a full code block

console.log("Hello World")

Enter fullscreen mode Exit fullscreen mode

That's all for now

Bye

Top comments (0)