Why does Chrome/Brave console.log always append a line saying 'undefined'?
You must have seen this kind of behavior when you enter console.log() in a browser console window
console.log("Hola!")
Hola!
undefined
We got two values here:
Hola!
undefined
Even though we expected the first value, the second value came as a s...
nikhilchhabra.hashnode.dev1 min read
Bijaylaxmi Behera
web developer
Great explanation π