summaryrefslogtreecommitdiff
path: root/index.js
blob: 36d56ef958e2ad902ebfee41148f702c3ddd5944 (plain) (blame)
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);