I am clicking on a button , what It should do is trigger a function and add a new property inside object which is inside a large array of multiple objects, and eventually returns a new array , All I want to know is how we can use that new Array returned by that function ?
I am using this function to get triggered to change the array which I am passing it it, but I am not sure how I can get this value back. Sorry in advance for stupid question I am new to this.
const makeAdminPresenter = (collection) => {
var newTiles = collection?.map( obj => {
if(obj.userType === "administrator") {
return {...obj, isAdminPresenting: true}
}
return obj;
});
console.log('pressed', newTiles)
return newTiles
};
var newTiles = useCallback(() => {
makeAdminPresenter(tiles);
},[makeAdminPresenter, tiles])
console.log('result',makeAdminPresenter,newTiles )
I want to use newTiles, any suggestion ?