0% found this document useful (0 votes)
38 views1 page

Sample Code To Practice: "Sends This Message Into The Console"

Console.log() is used to output content to the browser console for debugging purposes. It sends messages to the "Inspect element" window in Chrome or similar plugin windows in other browsers. Console output allows developers to view data values and troubleshoot JavaScript code during development.

Uploaded by

Anonymous fkxLbu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
38 views1 page

Sample Code To Practice: "Sends This Message Into The Console"

Console.log() is used to output content to the browser console for debugging purposes. It sends messages to the "Inspect element" window in Chrome or similar plugin windows in other browsers. Console output allows developers to view data values and troubleshoot JavaScript code during development.

Uploaded by

Anonymous fkxLbu
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 1

Sample Code to Practice

JAVASCRIPT
console.log("Sends this message into the console");

We use console.log() to output content into the


console. In chrome it outputs it into the Inspect
element window under console. Other browsers such
as may require a plugin in order to be able to view
output from JavaScript.
Can be used to troubleshoot JavaScript, but also in code
development to view data values.

You might also like