//알림 출력
alert('알림');
//콘솔 출력
console.log('콘솔');
//값 입력받기
var temp = prompt('아무 값이나 입력해주세요!');
//객체의 구조 보기 (key랑 value 등등)
console.dir(객체명);
//콘솔 출력의 그룹화
console.group('console group test');
console.log('a');
console.log('b');
console.log('c');
console.groupEnd();
기초 함수
이 기사는 저작권자의 CC BY 4.0 라이센스를 따릅니다.