JavaScript Escape Comma en CSV

['stackoverflow', 'Awesome! work by stackoverflow team, cheers to them.'].map(string => string === null ? '' : `\"${string}\"`);
Obedient Ocelot