Mengakhiri Timer Menggunakan console.timeEnd DOM HTML
Parameter: method ini menerima label parameter tunggal yang sifatnya opsional. Method console.timeEnd() digunakan untuk menentukan label dari timer untuk stop.
<!DOCTYPE html>
<html>
<head>
<title>
Method console.timeEnd() DOM
</title>
</head>
<body>
<h1 style="color: green">
Blog Elfan
</h1>
<p>
Method console.timeEnd() DOM
</p>
<p>
Klik tombol START TIMER untuk mengeksekusi tombol console.time() untuk memulai timer.
<br>
Klik tombol END TIMER untuk mengeksekusi method console.timeEnd() untuk mengakhiri timer.
</p>
<button onclick="start_timer()">
Start Timer
</button>
<button onclick="end_timer()">
End Timer
</button>
<script>
// Fungsi untuk memulai timer
function start_timer() {
console.log('timer started');
console.time();
}
// Fungsi untuk mengakhiri timer
function end_timer() {
console.timeEnd();
}
</script>
</body>
</html>
Blog Elfan
Method console.timeEnd() DOM
Klik tombol START TIMER untuk mengeksekusi tombol console.time() untuk memulai timer.
Klik tombol END TIMER untuk mengeksekusi method console.timeEnd() untuk mengakhiri timer.
<!DOCTYPE html>
<html>
<head>
<title>
Method console.timeEnd() DOM
</title>
</head>
<body>
<h1 style="color: green">
Blog Elfan
</h1>
<p>
Method console.timeEnd() DOM
</p>
<p>
Klik tombol START TIMER untuk memulai menjalankan 'timer 1'.
<br>
Klik tombol END TIMER untuk mengakhiri operasi 'timer 1'.
</p>
<button onclick="start_timer_one()">
Start Timer 1
</button>
<button onclick="end_timer_one()">
End Timer 1
</button>
<p>
Klik tombol START TIMER untuk memulai menjalankan 'timer 2'.
<br>
Klik tombol END TIMER untuk mengakhiri operasi 'timer 2'.
</p>
<button onclick="start_timer_two()">
Start Timer 2
</button>
<button onclick="end_timer_two()">
End Timer 2
</button>
<script>
// Start timer 1
function start_timer_one() {
console.log('timer 1 started');
console.time('timer 1');
}
// Mengakhiri timer 1
function end_timer_one() {
console.timeEnd('timer 1');
}
// Start timer 2
function start_timer_two() {
console.log('timer 2 started');
console.time('timer 2');
}
// Mengakhiri timer 2
function end_timer_two() {
console.timeEnd('timer 2');
}
</script>
</body>
</html>
Output:Blog Elfan
Method console.timeEnd() DOM
Klik tombol START TIMER untuk memulai menjalankan 'timer 1'.
Klik tombol END TIMER untuk mengakhiri operasi 'timer 1'.
Klik tombol START TIMER untuk memulai menjalankan 'timer 2'.
Klik tombol END TIMER untuk mengakhiri operasi 'timer 2'.
- Cara Mudah Menggunakan Method adoptNode() DOM pada HTML
- 3 Method Utama Anchors Collection DOM pada HTML
- 4 Method Utama Applets Collection DOM pada HTML
- Cara Menggunakan Properti baseURI DOM pada HTML
- 2 Contoh Penggunaan Properti Body DOM pada HTML
- 2 Contoh Penggunaan Method close() DOM pada HTML
- 2 Contoh Penggunaan Properti Cookie DOM pada HTML
6 komentar untuk "Mengakhiri Timer Menggunakan console.timeEnd DOM HTML"
Hubungi admin melalui Wa : +62-896-2414-6106
Respon komentar 7 x 24 jam, mohon bersabar jika komentar tidak langsung dipublikasi atau mendapatkan balasan secara langsung.
Bantu admin meningkatkan kualitas blog dengan melaporkan berbagai permasalahan seperti typo, link bermasalah, dan lain sebagainya melalui kolom komentar.
- Ikatlah Ilmu dengan Memostingkannya -
- Big things start from small things -
Jenis browser apa saja yang dapat digunakan untuk mengaktifkan method console.timeEnd() pada dom html?
BalasHapusBerikut adalah beberapa jenis browser populer yang dapat digunakan untuk mengaktifkan method console.timeEnd() dom pada html:
Hapus1. Google Chrome
2. Internet Explorer 11.0
3. Firefox 10.0
4. Opera
5. Safari 4.0
Apa fungsi method console.timeEnd() pada dom html?
BalasHapusConsole.timeEnd() pada html digunakan untuk menghentikan timer yang sebelumnya telah dimulai dengan menggunakan method console.time().
HapusSelain menggunakan method console.timeEnd() adakah alternatif lain yang dapat digunakan untuk mengakhiri proses timer pada method console.time() html?
BalasHapusAlternatif lain yang dapat digunakan untuk menghentikan operasi dari method console.time() adalah dengan close browser,, atau mematikan komputer :D
Hapus