কম্পিউটার

JavaScript console.log() উদাহরণ সহ


JavaScript console.log() পদ্ধতি কনসোলে একটি বার্তা লিখতে ব্যবহৃত হয়।

JavaScript console.log() পদ্ধতি -

-এর কোড নিচে দেওয়া হল

উদাহরণ

<!DOCTYPE html>
<html>
<head>
<style>
   body {
      font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
   }
</style>
</head>
<body>
<h1>console.log() Example</h1>
<button class="Btn">CLICK HERE</button>
<h3>Click the above button to see output in your console</h3>
<script>
   let test = {
      a:22,
      b:'HELLO',
      c:44,
   }
   console.log(test);
   console.log('HELLO WORLD');
</script>
</body>
</html>

আউটপুট

JavaScript console.log() উদাহরণ সহ

"এখানে ক্লিক করুন" বোতামে ক্লিক করলে -

JavaScript console.log() উদাহরণ সহ


  1. একটি উদাহরণ সহ জাভাস্ক্রিপ্টে অ্যাসিঙ্ক্রোনাস ফাংশন ব্যাখ্যা করুন

  2. উদাহরণ সহ জাভাস্ক্রিপ্টে উত্তরাধিকার

  3. একটি উদাহরণ সহ জাভাস্ক্রিপ্টে একটি বস্তুর গভীর ক্লোনিং ব্যাখ্যা করুন।

  4. আমি কিভাবে console.log জাভাস্ক্রিপ্ট ভেরিয়েবলগুলিকে DOM-এর সাথে সম্পর্কযুক্ত করব?