Untitled

You might also like

Download as txt, pdf, or txt
Download as txt, pdf, or txt
You are on page 1of 1

Properties:

----------------
OOPs
Interpreted
Enables dynamic interactivity on web pages
Follows the syntax and structure of the C programming language.
Case-sensitive language.

Application of JavaScript
-------------------------------------------------------
Displaying pop-up windows and dialog boxes (like an alert dialog box, confirm
dialog box and prompt dialog box),
Client-side validation,
Dynamic drop-down menus,
Displaying date and time,

Code:

<script ...>
JavaScript code
</script>

Earlier the script tag takes two important attributes:


language="javascript"
type="text/javascript"

Assignment:
*Add two numbers
*if a given value is even/odd
*leap year
*print table
*sum of digits of a number (123=1+2+3)

You might also like