Miscellaneous
capitalize()
Signature
Section titled “Signature”capitalize() — returns any
Description
Section titled “Description”Returns the text with the first character converted to uppercase.
Parameters
Section titled “Parameters”| Name | Type | Required | Default | Description |
|---|---|---|---|---|
text | string | yes | — | Text to capitalize. |
Examples
Section titled “Examples”capitalize(text) <!--- Capitalize a sentence, will result in "Wheels is a framework" --->
#capitalize("wheels is a framework")#