-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
81 lines (61 loc) · 1.69 KB
/
index.html
File metadata and controls
81 lines (61 loc) · 1.69 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Console Tricks!</title>
</head>
<body>
<p onClick="makeGreen()">×BREAK×DOWN×</p>
<script>
const dogs = [{ name: 'Snickers', age: 2 }, { name: 'hugo', age: 8 }];
const p = document.querySelector('p');
function makeGreen() {
p.style.color = '#BADA55';
p.style.fontSize = '50px';
}
// Regular
console.log("Hello")
// Interpolated
console.log("Hi I am a %s", "string")
// Styled
console.log("%c Hi I am styled!!", "background-color:red; font-size:30px")
// warning!
console.warn("Woah!, I didn't do that")
// Error :|
console.error("What the hell is wrong with you?")
// Info
console.info("Ask her out!")
// Testing
console.assert(1 !== 1, "thats is so not true")
// clearing
// console.clear()
// Viewing DOM Elements
console.dir(p)
// Grouping together
dogs.map(dog => {
// console.group(`${dog.name}`)
console.groupCollapsed(`${dog.name}`)
console.log(`this is ${dog.name}`);
console.log(`${dog.name} is ${dog.age} years old!`);
console.groupEnd(`${dog.name}`)
})
// counting
console.count("Hola!")
console.count("hello!")
console.count("Hola!")
console.count("Namaste");
console.count("Namaste");
console.count("Hola!")
console.count("hello!")
console.count("hello!")
console.count("hello!")
console.count("Namaste")
// timing
console.time("fetching data");
fetch('https://jsonplaceholder.typicode.com/todos/1').then(() =>{
console.timeEnd("fetching data");
})
console.table(dogs)
</script>
</body>
</html>