Uncategorized

Debugging Your Javascript Code

Web browsers generally have consoles, which are interactive command lines where you can print text and test pieces of code.

This is where, for the most part, you’ll be debugging your javascript code and checking out for errors.

How To Open The Console

To open up the console for any browser.

  1. right-click on your webpage and choose “inspect” or “inspect element” if you’re on Safari browser.
A Google Chrome illustration
A Safari illustration

2. Next, select console

A Google Chrome console illustration

Printing Values Using console.log()

console.log("Hello");
console.log("This is the browser console");

//Output:
//Hello
//This is a browser console

Printing Multiple Values

console.log('abc', 123, true);
//Output
//abc 123 true

Printing Strings With Substitutions

Here are some directives you can use for your substitutions:

%s: converts the corresponding value to a string and inserts it

console.log('Value: %s %s', 123, 'abc');

//Output
//123 abc

%o: inserts a string representation of an object

console.log('%o', {foo: 123, bar: 'abc'});
A snapshot of the result of the above program

Notice that result is an object.

%j: converts a value to a JSON string and inserts it

console.log('%j', {foo: 123, bar: 'abc'});
A snapshot of the result of the above program

%%: inserts a single %

console.log('%s%%', 100);

//Output
// 100%

Printing Error Information Using console.error()

console.error() works typically the same way as console.log(), but what it logs is considered error information.

Author

Recent Posts

Apple is developing a doorbell camera equipped with Face ID technology.

Apple is reportedly developing a new smart doorbell camera with Face ID technology to unlock…

5 hours ago

Google Launches Its Own ‘Reasoning’ AI Model to Compete with OpenAI

This month has been packed for Google as it ramps up efforts to outshine OpenAI…

2 days ago

You can now use your phone line to call ChatGPT when cellular data is unavailable.

OpenAI has been rolling out a series of exciting updates and features for ChatGPT, and…

4 days ago

Phishers use fake Google Calendar invites to target victims

A financially motivated phishing campaign has targeted around 300 organizations, with over 4,000 spoofed emails…

4 days ago

Hackers Exploiting Microsoft Teams to Remotely Access Users’ Systems

Hackers are exploiting Microsoft Teams to deceive users into installing remote access tools, granting attackers…

6 days ago

Ethical Hacking Essentials

Data plays an essential role in our lives.  We each consume and produce huge amounts…

7 days ago