René Nyffenegger's collection of things on the web
René Nyffenegger on Oracle - Most wanted - Feedback -
 

slice [JavaScript snippet]

function main() {

  var str = "onetwothree"

  txt_out(str.slice(3,6)) // two

}