We're going to parse a file, use a conditional to add a new column, then save the new file with an additional column all without using any external dependencies not included in the standard lib
const fs = require('fs');
const inputCsvFile = 'input.csv';
const outputCsvFile = 'output.csv';