Javascript Performance(2)
1436 단어 PerformanceJavaScriptJavaScript
Switch, if, ifelse 세가지 조건문의 성능 비교
1. Switch
function Test(input) {
switch (input) {
case 1: return 1;
case 2: return 2;
case 3: return 3;
case 4: return 4;
case 5: return 5;
case 6: return 6;
case 7: return 7;
}
}
const Timer = Date.now();
for (let i = 0; i < 1000000000; i++) {
Test(i%7+1);
}
console.log(Date.now()-Timer); // 2102
2. if
function Test(input) {
if (input == 1) return 1;
if (input == 2) return 2;
if (input == 3) return 3;
if (input == 4) return 4;
if (input == 5) return 5;
if (input == 6) return 6;
if (input == 7) return 7;
}
const Timer = Date.now();
for (let i = 0; i < 1000000000; i++) {
Test(i%7+1);
}
console.log(Date.now()-Timer); // 2102
3. ifelse (slowest)
function Test(input) {
if (input == 1) return 1;
else if (input == 2) return 2;
else if (input == 3) return 3;
else if (input == 4) return 4;
else if (input == 5) return 5;
else if (input == 6) return 6;
if (input == 7) return 7;
}
const Timer = Date.now();
for (let i = 0; i < 1000000000; i++) {
Test(i%7+1);
}
console.log(Date.now()-Timer); // 2117
결론
위의 두 문법은 실행 결과가 같았지만, if else 문법만 약간의 성능 저하가 있었다
Author And Source
이 문제에 관하여(Javascript Performance(2)), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://velog.io/@heavyrisem/Javascript-Performance2저자 귀속: 원작자 정보가 원작자 URL에 포함되어 있으며 저작권은 원작자 소유입니다.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)