JSFiddle - React, Tailwind, and code Playground

by Yuriy Petrichenko

JavaScript

let num = ['sraka','perdyaka'];
num.push('lyzaka');
let numLang = num.map(function(item){
  return item.toUpperCase();
});
console.log(numLang);