Skip to content

Latest commit

 

History

History
20 lines (16 loc) · 279 Bytes

README.md

File metadata and controls

20 lines (16 loc) · 279 Bytes

Echo() exercise

Modify echo.js to print out each argument to the echo() function on a new line.

echo();
// should print nothing

echo('bla');
// should print
//
// 'bla'

echo('foo', 'bar', 'baz');
// should print
//
// 'foo'
// 'bar'
// 'baz'