SaviourTheDevcodebadass.hashnode.dev·Oct 31, 2023Make your console.log() beautiful: Unleash the magic of console.log() with CSSFor a long time, I've been using plain old boring console.log() and so far, it's been a very good friend. However, I feel betrayed because I just discovered that console.log() output can be styled with CSS. It's like finding out your dog can sing aft...Discuss·1 likeJavaScript
Aniket Pandharabaleaniketicloud.hashnode.dev·Oct 15, 2023VS Code snippet: console.log(), React FCWhen coding React, I use React plus Typescript pattern a lot. Also, you import { FC } from "react" interface OptionsProps { } export const Options: FC<OptionsProps> = () => { return ( <> </> ) } So, I made a snippet in VS-Code to red...Discussconsole.log
Jose Marinjosuamanuel.hashnode.dev·Sep 7, 2023Chrono and Console log timelinesLogs are as necessary as tedious. They give valuable information in a usually terrible format. Coming to the rescue when we need to log time events, we have Chrono functionality in js-awe library: https://www.npmjs.com/package/js-awe npm install js-...Discussconsole.log
Alison Liangdesignnerd.hashnode.dev·Aug 7, 2023Simple way to debug in Javascript - console.logWhen I'm writing code and haven't quite finished it yet, I like to test out the logic to make sure everything's working as it should. That's where the console.log() method comes in handy. Here's a simple guide to using the JavaScript console.log() me...Discuss·2 likes·43 readsJavaScript
Remusremusrisnov.hashnode.dev·Aug 6, 2023Programming Tidbits (VS Code Keyboard Shortcuts, Console.log Styling + Search, Diffing Libraries, fetch === curl)Here are a few tidbits I've picked up coding to make your life easier in front of the keyboard. Large Files When working with a large file, there are times you need to step back and see the bigger picture. The VS Code keyboard shortcuts below will co...Discuss·2 likes·62 readsconsole.log
Lukas Nachtigalllukasnach.hashnode.dev·Jun 15, 2023🌈 Make your console.log(output); colorful!🌈🌈 Ever felt like your life lacks color? Especially when you’re staring at that console for, like, 176 hours every day? “console.log” is your dear friend, but sometimes even friends need a makeover. So, let’s jazz up our monotonous black-and-white co...Discuss·35 readsJavaScript
Komal Amrutkarkamrutkar.hashnode.dev·Mar 28, 2023Is console.log() asynchronous in javascript?When it comes to debugging in JavaScript, the console.log() function is an essential tool that is commonly used to print messages to the console. However, there is some confusion as to whether console.log() is an asynchronous function or not. In this...Discuss·1 like·306 readsJavaScript
Arya gidwaniaarya2228.hashnode.dev·Mar 27, 2023Console MethodsConsole, also known as a command-line interface (CLI), is a text-based user interface that allows users to interact with a computer system through a command-line interpreter. Console methods are an important part of JavaScript that allows developers ...Discuss·1 likeFrontend Development
Gana Sai TejaforCoders Castlecoderscastle.hashnode.dev·Mar 19, 2023Debugging Your JavaScript Code: Because Nothing is Perfect, Not Even Your Code!Are you a JavaScript developer struggling with bugs and errors in your code? Fret not, my friend, for you are not alone. Debugging can be a daunting task, but with a little bit of patience and the right approach, you can squash those pesky bugs and h...Discuss·149 readsJavaScript
Uria Rogeluria.hashnode.dev·Mar 7, 2023Who Moved My Logs (Robust Node.js Console)\Hero image from* Imgur Which 'Where is Waldo' image is the hardest one? The one where all the figures look like Waldo. With reading logs it is not very different. I have started my first full-stack job six years ago. Debugging Javascript programs is...Discuss·1 like·103 readsNode.js