How do you hunt down bugs in web development? Well you search and search and search until you find some code that may be causing the issue. GREAT! But now what? That’s right… console.log('some relevant message');
console.log(someRelevantVariable);
// or alternatively
console.log('some relevant message', someRelevantVariable); Which is super, unless your code…