Starten Java
String str = "Hello";
//This will return true because string str starts with "He"
str.startsWith("He");
Victorious Vulture
String str = "Hello";
//This will return true because string str starts with "He"
str.startsWith("He");