<html>
<body>
<script type="text/javascript">
var str="Hello happy world!"
document.write(str.slice(6))
document.write("<br />")
document.write(str.slice(6,11))
</script>
</body>
</html>