2016年12月8日 星期四

(js)function處理引數的方法

var data = [undefined, null, [], {}, '', 0];
        console.log(data);

        data.forEach(function(d, i){
          var g;
          try {
              /**
               * 重點
               *
               * data[0], data[1].....會出問題
               */
              g = d[0] || '';
              g = d.a || '';
          } catch (e) {
            console.log('(%d): %s => %s', i, g,e);
          }
        });

沒有留言:

張貼留言