Isaac Arinlamyscript.hashnode.dev·Dec 1, 2024When and How to use return and console.log in JavaScript functionsIntroduction In JavaScript, functions are vital for effectively structuring, managing, and reusing code. To make the most of their capabilities, it's important to grasp two key statements frequently used within functions: return and console.log. Whil...return statement in javascript
ByteScrum TechnologiesforByteScrum Technologiesblog.bytescrum.com·Sep 7, 2024How to Implement Winston for Logging in Node.jsLogging is a crucial aspect of software development, especially in production environments. It helps developers track events, debug issues, and gain insights into their application's performance. In the world of Node.js, one of the most popular loggi...custom logs
Jaydev Jadavtechjaydev.hashnode.dev·Aug 30, 2024Do Developers Really Use the JavaScript Console? Understanding Its Purpose and BenefitsAs JavaScript developers, we've all used the console object at some point in our coding journey. But do we really understand the full capabilities of the JavaScript console object, or are we just scratching the surface by using a small fraction of it...37 readsJavascriptJavaScript
Sailesh ShresthaforJoBins Engineeringblog.jobins.jp·Jun 30, 2024Dive Deep into JavaScript Console: A Comprehensive Guide for BeginnersIn web development, being great at finding and fixing problems in your code is like having a superpower. One of the most important tools for this is the JavaScript console. Whether you've been coding for years or are just starting out, learning how t...3 likes·39 readsJavaScript
Dhanush Ndhanushnehru.hashnode.dev·Jun 13, 2024Super useful console.log tricksWhen developing, debugging or troubleshooting web applications, console.log is one of the most frequently used tools by developers. It offers a straightforward method for outputting data to the console, which helps in understanding code execution and...10 likesJavaScript
Olguncodewitholgun.com·May 1, 2024How to use Computed Property Names in console.log?Introduction If you want to learn about how to use console.log as a professional developer then you have to learn computer property names. Let's Start Assume that we have 4 different objects and each one is assigned to a variable. How can we log thos...JavaScript
Alexander PanovforRoyalZSoftwareroyalzsoftware.de·Mar 4, 2024Don't use console.log! The different log levels explainedAs a software developer I wish somebody would have taught me earlier about the bad practice of using console.log. What about you? Are you still using it? After this post you will understand why it's important to know about log levels, when to use whi...91 readslogging
Gemma Blackgemmablack.dev·Feb 6, 2024NodeJS: Using console.dir() over console.log() with deeply nested objects.console.dir() seems rather redundant. At least with console.log(), you can add as many arguments as you want, but with console.dir(), you can only log one. Despite that, for debugging, I'll be using console.dir() more in future. Here's why? Let's tak...1.2K readsNode.js
Akalonu Chukwuduzie Blaisevectorware.hashnode.dev·Jan 10, 2024Building custom npm packages to solve problems.Hi there👋, If you are reading this then you must fall into one of the following categories: You just randomly stumbled across this article🌚. You want to build your own npm package to solve a problem🤓. You randomly stumbled across this article a...13 likes·86 readsNode.js
Piyush Agrawalpiyushagrawal.hashnode.dev·Dec 26, 2023Using of Console in java scriptThe console object in JavaScript provides a set of functions that allow you to interact with the browser's developer console. These functions are useful for debugging, logging information, and monitoring the execution of your JavaScript code. Here ar...output in java script