Just wondering if someone can tell me why this code generates an error in Extendscript
[0,1,2].map(function { alert(i); });
funny when I import underscore.js the _.map seems to work fine
Update for some reason
Array.prototype.map.call(aa,function (i){alert(i);});
seems to work
Retrieving data ...