CommonEnumerate CallableCommonEnumerate<T>(iterable, start, step): Generator<[index: number, value: T], void, any>Iterate through the passed iterable and yield index/value pairs.Parametersiterable: Iterable<T, any, any>The to-be iterated iterablestart: number = 0The starting indexstep: number = 1The step size in which the index is incrementedReturns Generator<[index: number, value: T], void, any>
Iterate through the passed iterable and yield index/value pairs.