lowercase, uppercase, remove spaces ( trim ) , capitalize first letter

PHOTO EMBED

Wed Nov 10 2021 15:28:48 GMT+0000 (Coordinated Universal Time)

Saved by @KarenStewart #javascript #react.js

// making all uppercase
city.toUpperCase();

//removing spaces and making all lowercase
city = city.trim().toLowerCase();

//capitalizing the first letter
cityCapitalized = city.charAt(0).toUpperCase() + city.slice(1);
content_copyCOPY