In Association with Amazon.in   Flipkart

Friday, July 12, 2013

JavaScript If Condition Example

1. If Condition:

Example 1

<html>
        <head>
                <script>
                
                m = 40;
                
                if(m>=35)
                 {
                          document.write("Pass");
                        document.write("<br/>Congrats!");
                }

                </script>

        </head>
        
        <body>
        </body>
</html>

No comments:

Post a Comment


Related Posts Plugin for WordPress, Blogger...