Get the length of a string.
stringLen(string)
→ returns numeric
string.len()
Output the length of the string "Hello World".
StringLen("Hello World")
Expected Result: 11
Output the length of the string "Hello World".
"Hello World".len()
Expected Result: 11