JSFiddle - React, Tailwind, and code Playground

by shapeshifta

JavaScript 1.7

const nums = [12,13,14,15];
 
nums.forEach((val,index) => { 
   console.log(val, index);
});