why string use length function to find its length not length keyword in java code example
Example: java check for string length
String data = "Hello, World!";
int nameLength = data.length(); // 13
String data = "Hello, World!";
int nameLength = data.length(); // 13