You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
메소드 체인 방식에 대해 부정적인 이유를 알수 있는데요. 책의 내용과 다른 시각으로 코드를 바라 볼 수 있는 글입니다.
짧게 정리하면
불필요한 오버헤드 (메모리, 시간 복잡도)
오히려 복잡함
을 문제로 드는 것 같습니다.
사실인지(?) 아닌지 확인할 수 없는 내용이 많으니 적당히 걸러서 받아들이면 될 것 같습니다.
// 굳이 이렇게 써야해? 더 복잡해!constcsStudents=Students.filter(student=>student.class==='CS').map(student=>student.email).forEach(email=>sendInvitation(email));// 간단for(letstudentofStudents){if(student.class==="CS")sendInvitation(student.email);}
The text was updated successfully, but these errors were encountered:
자바스크립트 메소드 체인 그 어리석음
메소드 체인 방식에 대해 부정적인 이유를 알수 있는데요. 책의 내용과 다른 시각으로 코드를 바라 볼 수 있는 글입니다.
짧게 정리하면
을 문제로 드는 것 같습니다.
사실인지(?) 아닌지 확인할 수 없는 내용이 많으니 적당히 걸러서 받아들이면 될 것 같습니다.
The text was updated successfully, but these errors were encountered: