1/*The general syntax for this method is:
2stringName.toLowerCase();
3
4This method returns a copy of stringName with all uppercase letters
5replaced by their lowercase counterparts. It leaves non-alphabetic
6characters unchanged.*/
7
8"LaunchCode".toLowerCase();
9//launchcode
10
11//
12/*This program standardizes an email address by converting it to all
13lowercase characters.*/
14
15let input = "fake.email@LAUNCHCODE.ORG";
16let email = input.toLowerCase();
17console.log(email);
18
19//fake.email@launchcode.org