-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path2-09(크롬개발자도구).html
39 lines (32 loc) · 1.38 KB
/
2-09(크롬개발자도구).html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
<html>
<head>
<title>크롬 개발자 도구</title>
</head>
<body>
<script>
// console.log("Hello World"); // 출력
// console.info("Hello World"); // 정보
// console.warn("Hello World"); // 경고
// console.error("Hello World"); // 에러
// var userList = [
// { firstName : "재석", lastName : "유", email:"[email protected]" }, // key : firstName, value : 재석 ...
// { firstName : "종국", lastName : "김", email:"[email protected]" },
// { firstName : "세찬", lastName : "양", email:"[email protected]" },
// { firstName : "석진", lastName : "지", email:"[email protected]" },
// ];
// console.log(userList);
// console.table(userList); // log값을 찍는 게 아니라 userList를 테이블 형태로 찍음
console.time();
// for(let i=1; i<=1000000; i++) {
// console.log("배신자의 최후는 죽음뿐이다... 알겠냐 윤서야? " + i);
// }
console.timeEnd(); // time과 timeEnd사이의 수행 속도
// function a() {
// console.time();
// // code
// console.timeEnd();
// }
console.log("This is %c Style Message", "color:yellow;background-color:blue;padding:4px"); // %c 이후 스타일 적용(color, background-color, padding)
</script>
</body>
</html>