<script type="text/javascript">
var mystr="Hello World!";
document.write( mystr.substr(mystr.length-7,mystr.length-1)+ "<br />");
document.write(mystr.substr(0,5) );
</script>
var mystr="Hello World!";
document.write( mystr.substr(mystr.length-7,mystr.length-1)+ "<br />");
document.write(mystr.substr(0,5) );
</script>
2015-05-12
<script type="text/javascript">
var mystr="Hello World!"
document.write(mystr.substring(6,12)+ "<br />");
document.write(mystr.substring(0,5) );
</script>
var mystr="Hello World!"
document.write(mystr.substring(6,12)+ "<br />");
document.write(mystr.substring(0,5) );
</script>
2015-05-12
<script type="text/javascript">
var mystr="Hello World!"
document.write(mystr.indexOf("o",5));
</script>
var mystr="Hello World!"
document.write(mystr.indexOf("o",5));
</script>
2015-05-12