//03. 중첩 조건문(if) 개선하기 // 중첩된 if문 if (color) { if (color === 'black') { printBlackBackground(); } else if (color === 'red') { printRedBackground(); } else if (color === 'blue') { printBlueBackground(); } else if (color === 'green') { printGreenBackground(); } else { printYellowBackground(); } } // swith 문 사용 개선 #1 // 추천하지 않는다. 디버깅 어렵다 ( https://toddmotto.com/deprecating-the-switch-statement-for-o..
// 0.배열에 값을 추가하는 Tip var arr = [1,2,3,4,5]; arr.push(6); // push arr[arr.length] = 6; // 43 % faster in Chome ( http://jsperf.com/push-item-inside-an-array ) Testing // [1,2,3,4,5,6] var arr = [1,2,3,4,5]; arr.unshift(0); // unshift . [0].concat(arr); // 98% faster inChome ( http://jsperf.com/unshift-item-inside-an-array ) // => [0, 1, 2, 3, 4, 5] // 해당 배열 중간에 값을 삽입하기 var items = ['one','two', '..
// 수동설치 php 5.4 버전 이상만 설치 가능 다운로드 : curl -sS https://getcomposer.org/installer | php 기본적으로 : php.ini - open-ssl (extension 풀어져 있어야하더라고요 ) 다운로드 하면 : composer.phar 다운 같은 경로에 composer.bat 생성 후 아래 문장 사입 @ECHO OFF php "%~dp0composer.phar" %* //composer.json 파일 생성 ( 샘플) { "name": "testtest/phpunit_test", "authors": [ { "name": "testtest", "email": "testtest@gmail.com" } ], "require": { "phpunit/phpuni..