Data :
I have data that have inside arrays, I try loop by default code:
{
joblist.map(
As you see joblist is not array, it is object. If you really want to use map then you can use new Map(). The new Map() constructor accepts an iterable of entries. With Object.entries, you can easily convert from Object to Map:
var mapjoblist = new Map(Object.entries(joblist));
{mapjoblist.map((itemb,index) => (
.......
))}