• Runs the given function for each value in the array that is not null and has a non-zero length.

    Parameters

    • strings: string[]
    • fn: ((idx, s) => any)
        • (idx, s): any
        • Parameters

          • idx: number
          • s: string

          Returns any

    Returns void