JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.3.1/jquery.min.js"></script>
JavaScript
var a = [
{
id: 4,
qty: 1,
sdf: 56
}, {
id: 6,
qty: 1,
sdf: 56
}
];
/* delete a.qty; */
$(a).each(function(index,element){
console.log(element);
})