I was calling a function and pass array of objects as first argument and second argument was object property of first argument but I don't know why map func doesn't accepting second argument property Here code plz see it once
const myfunc = (arrObj, property) => {
  const arr1 = arrObj.map(item => {
    return item.property
  }
  return arr1:
}
const arrObj = [{
    title: 'book',
    body: 'hello'
  },
  {
    title: 'cup',
    body: 'hii'
  }
];
// Func call
console.log(myfunc(arrObj, 'title'));
 
     
     
    