paths && paths.forEach(function (pathProps) {

    new PathMonitor(esc, firebaseUrl, pathProps);

  });


이런게 있다고 칠때


paths 가 array 라면


왜 paths && paths.forEach 이딴 걸 쓰는 거지?


앞의 paths && 를 왜 붙이냐는 건데 


배열이 비어있을 경우를 대비해서 그런거임?