Untitled
unknown
plain_text
2 years ago
190 B
6
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