What is JavaScript ?
- Get link
- Other Apps
What is JavaScript?
- JavaScript was designed to add interactivity to HTML pages
- JavaScript is a scripting language/ a scripting language is a lightweight programming language
- A javascript consists of lines of executable computer side
- A javascript is usually embedded directly into HTML pages
- Javascript is an interpreted language /means that script execute without preliminary compilation
- Everyone can use Javascript without purchasing a license.
- It is free to use for everyone.
- To insert a JavaScript into the HTML page, we use the <script>tag
<SCRIPT LANGUAGE="JavaScript">
//Javascript code goes here
</SCRIPT>
the tag "<Script>" is an open tag for Javascript and "</Script>" is closing tag for Javascript.
Attribute:
Language: Indicates the scripting language used for writing the scripting code.
- The word document.write is a standard javascript command for writing output to a page
- By entering the document. write command between the <script type="Javascript"> and </script> tags, the browser will recognize it as a javascript command and execute the code line.
For example:
<HTML>
<Body>
<script type="javascript">
document.write("Hello World")
</script>
</Body>
</Html>
The code above will produce this output on an HTML page :
- Get link
- Other Apps
Popular posts from this blog
How write java Sample Program
SQL plus and Get Started With Oracle Database 11g Express Edition
How to Install Oracle SQL PLUS When you work on non programmer database then most of users use SQL. SQL is a sample high-level language. In past time IBM co. is found.but its commercially implement by oracle corporation. . To install SQL plus we need to download Oracle 11g Database Express Edition because Express editions are free for use with different user login. Once you have to download the oracle 11g setup from any site I suggest you google search and download from any software site because the Offical site is required to sign up after you are available for download. Using this link and download 11g express edition: https://www.filehorse.com/download-oracle-database-express-32/ If given link not work you can search your way any site. but please download express edition because of its free version of the oracle database. Another way is CD or DVD is available is a good option. insert cd or DVD in DVD ROM then DVD is automatically run and show installation screen. Af
Comments
Post a Comment
Thank you for comment and your feedback.