console.clear(); //전역변수 var mode = 0; var hello = function() { // 지역변수 var temp = 0; mode++; if ( mode == 1 ) { console.log('안녕하세요.'); } else if ( mode == 2 ) { console.log('반갑습니다.'); } else { console.log('헬로'); } } hello(); hello(); hello(); hello();