JSFiddle - React, Tailwind, and code Playground

by harifrais

JavaScript

var list = [
    { caste:"Banda",id:4},
    { caste:"Bestha",id:6},
];
    
for (var i=0; i<list.length; i++) {
    console.log(list[i].caste);
}