-
Notifications
You must be signed in to change notification settings - Fork 0
/
console.html
38 lines (33 loc) · 1.49 KB
/
console.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
<!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>console</title>
</head>
<body>
<script>
/*
## Console
○ JS memiliki fitur untuk melakukan logging bernama console
○ Logging adalah mekanisme yang biasa dilakukan oleh programmer untuk menampilkan informasi dari aplikasi yang sedang berjalan, tanpa harus mengganggu alur kerja aplikasi dan juga interaksi user.
○ untuk melakukan iini, kita bisa menggunakan fitur console diJS
○ Untuk menggunakan console, kita cukup menggunakan consolen di kode JavaScript
○ Biasanya digunakan untuk Debugging atau mencari masalah
## Console Method
○ Console.debug(...) | Memberitahu Informasi Kecil | Jarang Digunakan
○ Console.info(...) | Memberitahu Informasi
○ Console.warn(...) | Memberitahu Informasi Peringatan
○ Console.error(...) | Memberitahu Informasi Error
○ Console.table(...) | Memberitahu Informasi Dalam Bentuk Table
*/
// =========== Console ===========
document.writeln("<p><strong>Press F12 atau inspect/console</strong></p>");
console.debug("Hello World,Debug");
console.info("Hello World");
console.warn("Hello World, Ini peringatan Loh !");
console.error("Hello World, Ini error loh !");
</script>
</body>
</html>