Returns the length of the given value.
Accepts arrays, objects and strings.
len([0, 0, 0]) // 3 len({"foo": "bar", "hello": "world"}) // 2 len("hello") // 5
Last updated 5 months ago