In Association with Amazon.in   Flipkart

Friday, July 12, 2013

JavaScript If Else Statement Example

If else:

Example 1

<html>
        <head>
                <script>
                
                a = 10;
                b = 20;
                
                if(a>b)
                        {
                          document.write(a + 'is big');
                          alert('Thank u');
                        }

                else
                        {
                          document.write(b + 'is big');
                          alert('Thank u');
                        }               

                </script>

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

No comments:

Post a Comment


Related Posts Plugin for WordPress, Blogger...