1 2 3 4 5 6 7 8 9
#!/usr/bin/env node const note = process.argv[2]; const newNote = { content: note, id: Date.now(), }; console.log(newNote);