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

How to Create Neumorphism Effect with CSS

Neumorphism design, alternatively termed as "soft UI" or "new skeuomorphism," represents a design trend that…

2 days ago

How to Debug Your JavaScript Code

Debugging JavaScript code can sometimes be challenging, but with the right practices and tools, you…

5 days ago

Service Workers in JavaScript: An In-Depth Guide

Service Workers are one of the core features of modern web applications, offering powerful capabilities…

2 weeks ago

What are Database Driven Websites?

A database-driven website is a dynamic site that utilizes a database to store and manage…

3 weeks ago

How to show Toast Messages in React

Toasts are user interface elements commonly used in software applications, especially in mobile app development…

3 weeks ago

Exploring the Relationship Between JavaScript and Node.js

JavaScript has long been synonymous with frontend web development, powering interactive and dynamic user interfaces…

4 weeks ago