JSFiddle - React, Tailwind, and code Playground

by Mitch Greer

JavaScript

var numbers = [1,2,3,4,5,4,3,2,1];
numbers.forEach(function (item, index, array){
    alert(item);
});