alldayalone / summer

This repository is a sandbox for your first open source contribution.
MIT License
0 stars 5 forks source link

Create zipWithIndex #29

Closed shevv920 closed 4 years ago

shevv920 commented 4 years ago
const arr = ['January', 'February', 'March'];
const result = zipWithIndex(arr);
// result: [['January', 0], ['February', 1], ['March', 2]]
shevv920 commented 4 years ago

I'll do it