JavaScript console.log Kullanımı

Konuya git Çalıştır
<!DOCTYPE html>
<html>
<body>
<p>Bu işlem tarayıcı konsolunda görüntülenir.</p>
<p>Tarayıcı konsolunu açmak için F12 tuşuna basın</p>
<script>
console.log("Tarayıcı konsolu test");
</script>

</body>
</html>