JSFiddle - React, Tailwind, and code Playground

JavaScript

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

});