

- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What are the types of tags involved in javascript?
Html <script> tag
a) The <script> tag is used to define a client-side script.
b) The <script> tag contains scripting statements or an external script file.
JavaScript code must be keep in script tag.Let's see the use of the tag. For suppose declare the variable outside the script tag.
Example
<html> <body> <p id="tag"></p> var a = 1; <script> var b = 2; var c = a + b; document.getElementById("tag").innerHTML = c; </script> </body> </html>
Output
var a = 1
For suppose, let the variable be declared inside the script tag.
Example
<html> <body> <p id="tag"></p> <script> var a = 1; var b = 2; var c = a + b; document.getElementById("tag").innerHTML = c; </script> </body> </html>
Output
3
- Related Questions & Answers
- What the different types of JSTL tags are ?
- What are the various types of comments in JavaScript?
- What are the different types of errors in JavaScript?
- What are the types of ICMP message types?
- What types of logical operators are in javascript?
- What are the steps involved in preparing the trial balance?
- What are the types of Compilers?
- What are the types of Steganography?
- What are the costs involved in generating electricity? (Cost of Electrical Energy)
- What are the steps involved in Association Rule Clustering System?
- What are primitive data types in JavaScript?
- What are Complex Data types in JavaScript?
- How many types of directive tags JSP supports?
- what are html tags?\n\n
- What are the steps involved in risk management in information security?
Advertisements