Skip to content

Latest commit

 

History

History
21 lines (14 loc) · 311 Bytes

File metadata and controls

21 lines (14 loc) · 311 Bytes

Exercise 00 - Welcome

Goals

Use this exercise as a scratchpad 📝

Tips

  • If you output(someObject), it will print out onto the screen:
const user = {
  name: 'David Khourshid',
  company: 'Microsoft',
  interests: ['piano', 'state machines'],
};

output(user);

Next