L2.3: String Methods - toLowerCase()

PHOTO EMBED

Tue Oct 17 2023 07:21:28 GMT+0000 (Coordinated Universal Time)

Saved by @testpro #java

public class Main {
    public static void main(String[] args) {

     	String myFirstString = "Hello Test Pro Student!";
     
        System.out.println(myFirstString.toLowerCase());
    }
}
// Output: hello test pro student!
content_copyCOPY