1/*The toLowerCase() string method returns the value of its string in
2all lowercase letters. Since it is a method, we must precede it with a
3specific string in order to use it.*/
4
5let nonprofit = "LaunchCode";
6
7console.log(nonprofit.toLowerCase());
8console.log(nonprofit);
9
10//launchcode
11//LaunchCode