Function size

  • Gets the size of collection by returning its length for array-like values or the number of own enumerable string keyed properties for objects.

    Parameters

    • collection: string | any[] | Dictionary<any>

      The collection to inspect.

    Returns number

    Returns the collection size.

    0.1.0

    size([1, 2, 3])
    // => 3

    size({ 'a': 1, 'b': 2 })
    // => 2

    size('pebbles')
    // => 7