JSFiddle - React, Tailwind, and code Playground
JavaScript
var array = [{
caste: "Banda",
id: 4
}, {
caste: "Bestha",
id: 6
}];
$.each(array, function (key, value) {
alert(value.caste);
alert(value.id);
}
var array = [{
caste: "Banda",
id: 4
}, {
caste: "Bestha",
id: 6
}];
$.each(array, function (key, value) {
alert(value.caste);
alert(value.id);
}