Friday 8 January 2021

Simple Example of Java Script

 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:


Learn All Programming and Scripting languages with youtube.com/avadhtutor/




No comments:

Post a Comment