I have my schema:
Schema = {
name: String,
email: String,
animal: String
};
And i know that mongoose have some methods to help me uppercase, lowercase, even trim my String, but what about capitalize? I want be me able to uppercase only the firsts letters of the name and the email.
How can i do that??
I am using a form to catch the data, them save in my database using a post route, and there are some users that type all lowecase, and i was trying deal with this problem with css.
input#name {
text-transform: capitalize;
}
But this not work.