.len
Description
Parameters
Usage On Objects
obj = {
"1":"val",
"2":"val"
}
log obj.len
// returns the number of keys in the object (2)Last updated
# .len
Len is a dynamic property, that returns the length of its input value.
Len takes no parameters
obj = {
"1":"val",
"2":"val"
}
log obj.len
// returns the number of keys in the object (2)Last updated