🏠FunctionssentenceCase()On this pagesentenceCase()Returns a string with the first character of the string in upper case and the rest in lower case.Usageimport { sentenceCase } from 'string-factory';sentenceCase(string);CopyProp typesproptyperequireddefaultstringStringyesnullExamplessentenceCase("hello world") // "Hello world"Copy