Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
//It is a corrent choice to use startsWith.
//Be careful in using empty string
String hello = "yes";
if (hello.startsWith("yes"))
System.out.println("Morning");
if (hello.startsWith(""))
System.out.println("Good Evening");
// you can use charAt for one character but more coding is needed
String abc = "Yes";
if (abc.charAt(0) == 'Y' || abc.charAt(0) == 'y') {
...
} else {
...
}