11-16-2019, 04:51 AM
(11-15-2019, 03:32 PM)DecĀ ent12 Wrote: (...)
now i want to delete this data by giving Worker age or by worker name, what should i do?
Not sure what you mean by that! But if it is that you're seeking to get the values out of the populated array, then try this:
Code: (Select All)
> Workers[0].Name;
'dd'
> Workers[0]["worker-Age"];
55
Good luck!