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.
2. Next, select console
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'}); Notice that result is an object.
%j: converts a value to a JSON string and inserts it
console.log('%j', {foo: 123, bar: 'abc'}); %%: 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.
Latest tech news and coding tips.
1. What Is the Golden Ratio? The Golden Ratio, represented by the Greek letter φ (phi), is…
In CSS, combinators define relationships between selectors. Instead of selecting elements individually, combinators allow you to target elements based…
Below is a comprehensive, beginner-friendly, yet deeply detailed guide to Boolean Algebra, complete with definitions, laws,…
Debugging your own code is hard enough — debugging someone else’s code is a whole…
Git is a free, open-source distributed version control system created by Linus Torvalds.It helps developers: Learn how to…
Bubble Sort is one of the simplest sorting algorithms in computer science. Although it’s not…