Here's my contribution function colorTextLog(text, color) { return `\x1b[${color}m${text}\x1b[0m`; } // Test logging specific words console.log(`Hi, I'm ${colorTextLog('cyan color', '36')}!`);
function colorTextLog(text, color) { return `\x1b[${color}m${text}\x1b[0m`; } // Test logging specific words console.log(`Hi, I'm ${colorTextLog('cyan color', '36')}!`);
Here's my contribution
function colorTextLog(text, color) { return `\x1b[${color}m${text}\x1b[0m`; } // Test logging specific words console.log(`Hi, I'm ${colorTextLog('cyan color', '36')}!`);