JSFiddle - React, Tailwind, and code Playground

by Felipe Alfaro

JavaScript

var _data_ = [1,2,3,4,5,6,7,8,9];


Array.prototype.forEach.call(_data_, function(stringPart, index){
  console.log(index+1 +' / '+ _data_.length);
});


alert( !(undefined) )