i have an array of objects.
Lets say i got this array of objects from ezorArray:–
Array [
Object {
"EZOR": 19,
"HIDDEN": "none",
"HIDDEN_MOBILE": "none",
"SECTION_MOBILE": "",
"TEUR": "מידע נוסף לפי חוק הגנת השכר",
},
Object {
"EZOR": 22,
"HIDDEN": "none",
"HIDDEN_MOBILE": "inline",
"SECTION_MOBILE": "MisrotTlsList",
"TEUR": "משרות",
"eduInnerData": Array [],
"listName": undefined,
},
Object {
"EZOR": 23,
"HIDDEN": "none",
"HIDDEN_MOBILE": "inline",
"SECTION_MOBILE": "TafkidimList",
"TEUR": "תפקידים",
"eduInnerData": Array [],
"listName": undefined,
},
Object {
"EZOR": 24,
"HIDDEN": "none",
"HIDDEN_MOBILE": "inline",
"SECTION_MOBILE": "MiluyMakomList",
"TEUR": "מילוי מקום",
"eduInnerData": Array [],
"listName": undefined,
},
Object {
"EZOR": 25,
"HIDDEN": "none",
"HIDDEN_MOBILE": "inline",
"SECTION_MOBILE": "HeadrutList",
"TEUR": "העדרויות",
"eduInnerData": Array [],
"listName": undefined,
},
]
i want to get the value of “SECTION_MOBILE” property of each object.
i have tried
ezorArray["SECTION_MOBILE"]
i got always undefined for each value.
But i want the values look like below one:–
MisrotTlsList
TafkidimList
MiluyMakomList
HeadrutList
How can get these values from an array?Thanks..