Comments on: Node.js Debugging in Chrome DevTools https://frontendmasters.com/blog/node-js-debugging-in-chrome-devtools/ Helping Your Journey to Senior Developer Wed, 10 Apr 2024 16:01:41 +0000 hourly 1 https://wordpress.org/?v=6.5.2 By: Sreecharan Shroff https://frontendmasters.com/blog/node-js-debugging-in-chrome-devtools/#comment-2147 Wed, 10 Apr 2024 16:01:41 +0000 https://frontendmasters.com/blog/?p=1616#comment-2147 https://www.youtube.com/watch?v=VRTWePKePeg
above video is inspired from this article

]]>
By: Chris Coyier https://frontendmasters.com/blog/node-js-debugging-in-chrome-devtools/#comment-2112 Tue, 09 Apr 2024 14:39:22 +0000 https://frontendmasters.com/blog/?p=1616#comment-2112 In reply to Karl.

I’m afraid that’s far too simple and elegant Karl, I needed more lines of code.

]]>
By: Karl https://frontendmasters.com/blog/node-js-debugging-in-chrome-devtools/#comment-2111 Tue, 09 Apr 2024 14:37:52 +0000 https://frontendmasters.com/blog/?p=1616#comment-2111 Great tip for debugging node. Thanks, Chris!
I’m sure you already know this, but just for my own sense of closure, here is another way to get the function to do what you want:

function doSomething(message = "") {
  return message.split(" ").join(" 👏 ") + "!!!"
}
]]>