#is there some function to make the first letter uppercase of extract a letter from string
2 messages · Page 1 of 1 (latest)
I found this incredibly throrough answer that I hope helps you 🙂
2 messages · Page 1 of 1 (latest)
type Greeting = "Hello, world"
type ShoutyGreeting = Uppercase<Greeting>
type ShoutyGreeting = "HELLO, WORLD"
but
type ShoutyGreeting = "Hello, World"
I found this incredibly throrough answer that I hope helps you 🙂