Skip to content

Instantly share code, notes, and snippets.

@fxp
Last active November 29, 2016 15:03
Show Gist options
  • Save fxp/eb9c153fac4882b2976c3f60588b1823 to your computer and use it in GitHub Desktop.
Save fxp/eb9c153fac4882b2976c3f60588b1823 to your computer and use it in GitHub Desktop.
Javascript reviews
  1. 无限循环。万一条件不符合,这段代码就会一直跑了,直到耗尽资源。
for (var i = 0; ; i++) {
  ...
  if(...){
    break;
  }
}
  1. 尽量少写静态字符串
    function getChartData(xAxis, yAxis) {
        return {
            legendData: yAxis.lineName,
            xAxis: [{
                name: '时间',
                boundaryGap: true,
                data: xAxis
            }],
            series: yAxis.satDataArray
        }
    }

tushare

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment