You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
it seems that the log function works a bit different than other implementations.
1.)
It prints ints with a tailing ".0", for example
a = 10
console.log(a)
"10.0"
2.)
Passing multiple arguments separated by "," writes each argument into a new line.
I think it would be nicer, if arguments were printed on one line, separated by a space (google chrome, for example, does it that way). I have no idea whats the standard here or if there is even a standard :)
Hi,
it seems that the log function works a bit different than other implementations.
1.)
It prints ints with a tailing ".0", for example
a = 10
console.log(a)
"10.0"
2.)
Passing multiple arguments separated by "," writes each argument into a new line.
I think it would be nicer, if arguments were printed on one line, separated by a space (google chrome, for example, does it that way). I have no idea whats the standard here or if there is even a standard :)
Regards,
Matthias