Returns the length of a string or an array.
length('abc'); // 3length([1, 2, 3]); // 3 Copy
length('abc'); // 3length([1, 2, 3]); // 3
The string or array.
The length of the string or array.
Returns the length of a string or an array.
Example