var person_name : string = "aYYaN";

//convert name in lower case
console.log(person_name.toLowerCase());


//convert name in upper case
console.log(person_name.toUpperCase());


//convert name in title case
console.log(person_name.charAt(0).toUpperCase() + person_name.slice(1).toLowerCase());

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: