Table of Contents
Back Button
Back to Chapter
Control Statements
No items found.
Function & Events
No items found.
Array and its Types
No items found.
OOP : Object Oriented Programming
No items found.
Javascript Standards
No items found.
HTML DOM
No items found.
Javascript : Advanced 1
No items found.
Javascript : Advanced 2
No items found.
Additional JavaScript
No items found.

Run Javascript in Web Page

Development Tools

Javascript can be written in Any Text Editor like Notepad or Wordpad.

But, to make our life simpler various vendors have come up with very nice JavaScript editing tools. Some of them are listed here −

Sublime Text Editor

Atom

Visual Studio Code (VS CODE)

Adobe Muse

Eclipse

Brackets

Adobe Dreamweaver

How to write Code.

  1. Create a HTML File. (You have learnt this in previous chapter)
  2. Type the Following Code in file by using Text Editor.
Hello World Program // All Body Content Here
  1. Save that file.
  2. Open That File in Any Web Browser and open console Tab, you will see the Output "Hello World"
https://s3-us-west-2.amazonaws.com/secure.notion-static.com/adc24db3-c793-4a20-b333-ca73c13e3588/Untitled.png

Explanation

All The Things You Write in HTML Code should be written inside opening<html>  and Closing </html> Tag.

Inside html tag There are 2 Tags :

  1. <head>
  2. <body>

All The Heading Part of the Project i.e. Title , Meta Description  is placed inside the opening <head> and closing </head> tag.

All The Body part of the Project i.e. Image , Bullets , Div is placed inside the opening <body> and closing </body> tag.

All Javascript Coding is placed inside the opening <script> and closing </script> tag.

You can place <script> tags anywhere inside <body> or <head>.

Any Number of Javascript code can be written in HTML file by using <script> Tag.

Ask queries
Contact Us on Whatsapp
Hi, How Can We Help You?