<script type="text/javascript"> var str="Hello world!"; document.write(str.substring(3)+"<br />"); document.write(str.substring(3,7)); </script>