简单教程
提交运行
代码编辑器:
<script> var str="Hello world!"; document.write(str.substring(3)+"<br>"); document.write(str.substring(3,7)); </script>
运行结果: