const st = new Set(['typescript', 'javascript', 'node.js', 'c++', 'python']);
const newset = new Set();
st.forEach(value => {
newset.add(value.toUpperCase());
});
console.log(newset);
/*
run:
Set(5) { 'TYPESCRIPT', 'JAVASCRIPT', 'NODE.JS', 'C++', 'PYTHON' }
*/