Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
3 views

JavaScript

JavaScript is a programming language essential for web development, allowing for the manipulation of HTML and CSS as well as data validation. It is one of the three core languages for web developers, alongside HTML and CSS. JavaScript code is embedded in HTML using the <script> tag to define dynamic behavior on web pages.

Uploaded by

santosh kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
3 views

JavaScript

JavaScript is a programming language essential for web development, allowing for the manipulation of HTML and CSS as well as data validation. It is one of the three core languages for web developers, alongside HTML and CSS. JavaScript code is embedded in HTML using the <script> tag to define dynamic behavior on web pages.

Uploaded by

santosh kumar
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOCX, PDF, TXT or read online on Scribd
You are on page 1/ 2

What is JavaScript?

JavaScript is the programming language of the web.

It can update and change both HTML and CSS.

It can calculate, manipulate and validate data.

Why Study JavaScript?


JavaScript is one of the 3 languages all web developers must learn:

1. HTML to define the content of web pages

2. CSS to specify the layout of web pages

3. JavaScript to program the behavior of web pages

The <script> Tag


In HTML, JavaScript code is inserted between <script> and </script> tags.

<!DOCTYPE html>

<html>

<body>

<h2>JavaScript in Body</h2>

<p id="demo"></p>

<script>

document.getElementById("demo").innerHTML = "My First JavaScript";

</script>

</body>

</html>

Out put

JavaScript in Body
My First JavaScript

You might also like