function sumTest(){ var i, sum = 0; for(i = 0; i < arguments.length; i++){ console.log(i+' : '+arguments[i]); sum += arguments[i]; } return sum; } console.log('result : ' + sumTest(1,2,3,4)); //출력 : 10
function twoArg(arg1, arg2){ console.log( 'twoArg.length', twoArg.length, 'arguments', arguments.length ); } twoArg('val1'); //twoArg.length 2 arguments 1 twoArg('val1', 'val2'); //출력 : twoArg.length 2 arguments 2 twoArg(); //출력 : twoArg.length 2 arguments 0
//알림 출력 alert('알림'); //콘솔 출력 console.log('콘솔'); //값 입력받기 var temp = prompt('아무 값이나 입력해주세요!'); //객체의 구조 보기 (key랑 value 등등) console.dir(객체명); //콘솔 출력의 그룹화 console.group('console group test'); ...
수의 연산 //제곱 Math.pow(3,2); //출력 : 9, 3의 2승 //반올림 Math.round(10.6); //출력 : 11, 10.6을 반올림 //올림 Math.ceil(10.2); //출력 : 11, 10.2를 올림 //내림 Math.floor(10.6); //출력 : 10, 10.6을 내림 ...
변수 선언 //선언 후 초기화 var temp; temp="아무 값"; //선언과 동시에 초기화 var temp="아무 값"; 변수에 값 입력받기 var name=prompt('당신의 이름은 무엇인가요?');//test 입력 alert(name); //출력 : test 자료형 확인 console.log(typeof [변수명 또는 숫자...
함수 지향 - 클로저
함수 지향 - 함수의 호출
새 버전의 콘텐츠를 사용할 수 있습니다.