IT/TypeScript
[TypeScript] 타입스크립트 console.log 출력하는 방법
올빼밋.
2022. 9. 22. 17:21
728x90
1. html 파일 생성
2. html에 html 내용채우기
3. <body> 태그에 <script> 태그 작성
4. <script> 태그에 src을 js파일로 설정 및 저장
5. html을 크롬으로 열거나 서버를 띄워 확인
1. html 파일 생성
2. html에 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>Document</title>
</head>
<body>
</body>
</html>
3. <body> 태그에 <script> 태그 작성
4. <script> 태그에 src을 js파일로 설정 및 저장
5. html을 크롬으로 열거나 서버를 띄워 확인
728x90