Closed igorbabko closed 1 year ago
@edemaine it's just a nit improvement to console.log output, instead of printing it like this count =2 it will print it with a space between = and a number like this count = 2. No real purpose, just a cosmetic thing.
console.log
count =2
=
count = 2
Sorry, I was looking on mobile. In fact, console.log("count =", 2) already prints count = 2, so I think this nit is already taken care of. 🙂
console.log("count =", 2)
Ah, indeed, thanks for taking a look!
@edemaine it's just a nit improvement to
console.log
output, instead of printing it like thiscount =2
it will print it with a space between=
and a number like thiscount = 2
. No real purpose, just a cosmetic thing.