Splitting
"some text".length
non empty strings are true
"some text".substring(0,2) = "so"
var mystring = "one two";
mystring.substring(0,3) = "one";
© 2023 Better Solutions Limited. All Rights Reserved. © 2023 Better Solutions Limited TopPrevNext
"some text".length
non empty strings are true
"some text".substring(0,2) = "so"
var mystring = "one two";
mystring.substring(0,3) = "one";