The length property contains an integer that indicates the number of characters in the String object. The last character in the String object has an index of length-1.
Syntax
Example
s = new String("Hello World");
s.length; //returns 11