JSFiddle - React, Tailwind, and code Playground

by Paulpro

JavaScript

tagArray = new Array('a','b','c');
$.each(tagArray, function(index, value) {
    if(typeof value == 'undefined')
        return false;
    console.log(index + " " + value); 

});