In an angular template, how can I evaluate what of this two options is better?
<img ng-src="{{filteredImgs[imgIdx].signed_src}}&width=1000">
<img ng-src="{{filteredImgs[imgIdx].signed_src + '&width=1000'}}">
I would like to see if there are differences when dealing with errors, or performance implications between both alternatives, but I could not find the source of where those two are evaluated. (I suspect this is in angular template evaluation core)