Writing into the browser console using JavaScript

Javascript / Overview of Javascript

271

Program:

<!DOCTYPE html>
<html>
<body>

<h2> Writing into the browser console</h2>
<p>Activate debugging with F12</p>

<p>Select "Console" in the debugger menu. Then click Run again.</p>

<script>
console.log(10 + 6);
</script>

</body>
</html> 

Output:

no

Explanation:

no

This Particular section is dedicated to Programs only. If you want learn more about Javascript. Then you can visit below links to get more depth on this subject.