console.log("hello world"); console.log("hello", "bye"); //여러 개 값 출력하기 console.warn(`this line ${'can make error'} `); console.log('name:%s','Hong Gil Dong'); // 템플릿 형식으로 출력하기 console.log('age:%d', 20); // 숫자는 %d console.log('pi:%d', 3.14); // 숫자는 %d console.log('math:%d science:%d', 95, 99); // 2가지 같이 쓰기 console.log('name:%s age:%d', 'Hong Gil Dong', 20); // 여러가지 같이 쓰기 console.log('name:%s math..