javascript touppercase code example
Example 1: uppercase javascript
var str = "Hello World!";
var res = str.toUpperCase();
Example 2: touppercase javascript array
const names = ['Ali', 'Atta', 'Alex', 'John'];
const uppercased = names.map(name => name.toUpperCase());
console.log(uppercased);
Example 3: uppercase javascript
var str = "Hello World!";
var res = str.toUpperCase();
Example 4: uppercase in javascript
"foo bar!".toUpperCase();
Example 5: toupper
int main() {
char c;
c = 'm';
printf("%c -> %c", c, toupper(c));
c = 'D';
printf("\n%c -> %c", c, toupper(c));
c = '9';
printf("\n%c -> %c", c, toupper(c));
return 0;
}