원문 : 10 Javascript Performance Boosting Tips from Nicholas Zakas Define local variables 지역변수를 사용하라 Don’t use the with() statement with() 문법을 사용하지 마라 Use closures sparingly closures 를 절약하라 Object properties and array items are slower than variables 개체 속성과 배열 항목은 변수보다 느리다. Don’t dig too deep into arrays 배열은 깊게 파지마라 Avoid for-in loops (and function based iteration) for-in 루프는 피하라. ( function 기반 반복은..