(1) Code Runner(Extension) 설치하기
(2) Node.js 설치하기
(3) HTML에 Javascript 연결 후 Console 출력하기
예) HTML 코드
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Javascript Basic</title>
<script src="main.js"></script>
</head>
// main.js
console.log("Hello World");
console.log("Good Bye World");
다음과 같이 콘솔창에 다음과 같이 출력되면 정상적으로 콘솔이 출력됨을 알 수 있다.
!! 만일 작성한 js 코드가 Element Console 에서 안보일경우 조치방법