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