<html> <head> <title>String comparisons</title> <script type="text/javascript" language="javascript"> <!-- // onload = function(){ var firstString = new String("AAA"); var secondString = new String("aaA");
document.write("<h3>Direct comparison of the two strings</h3>"); var comparison = (firstString==secondString); document.write(comparison); } // --> </script> </head> <body>