Untitled
Anonymous
plain_text
02/01/2024 8:50 AM
256 B
17
Indexable
const str = 'hello, world!';
// Uppercase conversion
const upperStr = str.toUpperCase();
// Red color output using ANSI escape codes
console.log('\x1b[31m' + upperStr + '\x1b[0m');
Editor is loading...
Leave a Comment