string.length
string.lenght -> number
Get the length of a string
Returns
number
string length (bytes)
Example
let a = "Hello World";
print( a.length ); // 11
string.lenght -> number
Get the length of a string
number
string length (bytes)
let a = "Hello World";
print( a.length ); // 11