Function.map throwing console error while performing $.map function. where result.extraIds includes 300k records.
$scope.extraIds = $.map(result.extraIds, function (item) {
return item.id;
});
This error internally stopping other functionality.
How can I handle this scenario?
idfrom it usingArray.mapand it's working fine. FIddle - Tushar