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.

Recent Posts

Google Announces that AI-developed Drug will be in Trials by the End of the Year

Isomorphic Labs, a drug discovery start-up launched four years ago and owned by Google’s parent…

8 hours ago

Instagram Extends Reels Duration to 3 Minutes

Regardless of whether TikTok faces a U.S. ban, Instagram is wasting no time positioning itself…

2 days ago

AWS Expands Payment Options for Nigerian Customers, Introducing Naira (NGN) for Local Transactions

Amazon Web Services (AWS) continues to enhance its customer experience by offering more flexible payment…

6 days ago

Why JavaScript Remains Dominant in 2025

JavaScript, often hailed as the "language of the web," continues to dominate the programming landscape…

1 week ago

Amazon Moves to Upgrade Alexa with Generative AI Technology

Amazon is accelerating efforts to reinvent Alexa as a generative AI-powered “agent” capable of performing…

1 week ago

Smuggled Starlink Devices Allegedly Used to Bypass India’s Internet Shutdown

SpaceX's satellite-based Starlink, which is currently unlicensed for use in India, is reportedly being utilized…

1 week ago