>Undefined
When using the console.log() in the browser console, we all have noticed that an "undefined" line appears after the log message.
console.log("Hello, world!");
Hello, world!
undefined
This "undefined" is normal and it appears due to the way JavaScr...
devrajroy.hashnode.dev1 min read