### No output for second numbers `console.log('foo', 123)` `console.log('foo', 123, 456)` Output: `foo` and `foo` Expected: `foo 123` and ` foo 123 456` ### No space with multiple strings `console.log('foo', 'bar)` Output: `foobar` Expected: `foo bar`
No output for second numbers
console.log('foo', 123)console.log('foo', 123, 456)Output:
fooandfooExpected:
foo 123andfoo 123 456No space with multiple strings
console.log('foo', 'bar)Output:
foobarExpected:
foo bar