标签: javascript optimization
重新定义参数对优化有害吗?
例如:
function drawPic( id_pic , x , y ) { if( settings.round_coordinates==true ) { x = Math.round(x); y = Math.round(y); } ... }
我习惯这样做,很方便,但我不知道我不应该这样做。