To Lowercase
Creates a string with all Unicode letters from the original string mapped to their lower case.
Examples
Filter
var str = "Hello World!";
console.log(str.toLowerCase());
package main
import (
"fmt"
"strings"
)
func main() {
fmt.Println(strings.ToLower("Gopher"))
}
Last Run
:
gopher