JSFiddle - React, Tailwind, and code Playground

by thelifeisyours

JavaScript

var productArray = [
            { name: "TV Samson 62", image: "hd-62.jpg", price: 4999, inStock: true },
            { name: "Flat vegg-TV", image: "flat-wall.jpg", price: 7999, inStock: false },
            { name: "Hytte-TV", image: "small-table.jpg", price: 399, inStock: true },
            { name: "Thin TV", image: "thin-tv.jpg", price: 5499, inStock: true }
        ];
        
        
        console.log(Object.keys(productArray[0]));