es6draft icon indicating copy to clipboard operation
es6draft copied to clipboard

Inconsistent log format for console methods

Open ziyunfei opened this issue 10 years ago • 0 comments

js> print("1", "2", "3")
1 2 3
js> console.log("1", "2", "3")
1 "2" "3"
js> console.error("1", "2", "3")
1 "2" "3"

ziyunfei avatar Apr 19 '16 10:04 ziyunfei