<html>
<body>

<script type="text/javascript">

var str="Hello world!"

document.write(str.search("world") + "<br />")
document.write(str.search("World") + "<br />")
document.write(str.search("woorld") + "<br />")

</script>

</body>
</html>