Lines Matching refs:item
23 let func = (item, index) => `${index}_${JSON.stringify(item)}`;
26 array1.forEach((item, index) => {
27 print(func(item, index));
31 array2.forEach((item, index) => {
33 print(func(item, index));
37 array3.forEach((item, index) => {
38 func(item, index);
43 array4.forEach((item, index) => {
44 func(item, index);