Data Type JavaScript DHTML


  
    Splitting a string into substrings
    
var a = "Bytes and bits";
var b = a.substring(10, 13);
document.write(b);