Simple Example are Listed Here
Example 1: simple printing Statement, java script with html, java script with CSS
<script>
document.write("Hello Welcome");
document.write("<marquee>welcome to JS</marquee>");
document.write(" <p style='color:red; background-color:blue; '>welcome CSS</p> ");
</script>
OutPut here :
Example 2: Simple Calculation Using JavaScript
<script>
document.write(3+2);
document.write("<br>");
document.write(3*2);
document.write("<br>");
document.write(3/2);
</script>
Output here:
No comments:
Post a Comment