JSFiddle - React, Tailwind, and code Playground

by Cameron Bernhardt

JavaScript

var ContentStatusId = {
    All: 0,
    Production: 1,
    Review: 2,
    Draft: 3,
    Concept: 4
}

for (var property in ContentStatusId) {
    if (ContentStatusId.hasOwnProperty(property)) {
        if (ContentStatusId[property] == 0) {
            console.log(property);
        }
    }
}