main.js====================
console.log("Hello World!");
node.js실행으로 확인하기====================
d:\javascript> node main.js
Hello World!
index.html====================
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<script src="main.js"></script>
</head>
<body>
</body>
</html>
팁 html Tab html:5 선택
====================
Ctrl+ Shift + x
좌측 상단 검색창
live server
설치 클릭
====================
브라우져 개발탭 - Ctrl+Shift+i
====================
참고사이트 developer.mozilla.org
head+async====================
head+defer====================
'use strict';====================
'컴퓨터 > Javascript' 카테고리의 다른 글
드림코딩 by 엘리 (0) | 2020.06.18 |
---|---|
JavaScript reference (0) | 2020.06.18 |
객체지향프로그래밍 (0) | 2019.07.12 |
javascript사전-생활코딩 (0) | 2019.07.07 |
날짜와 시간을 위한 Date 객체 (0) | 2019.07.07 |