I work as a python backend developer. Sometimes I have to interact with the front-end part of an application and therefore I would like to get clear and structured knowledge in this area.
function disemvowel(str) {
let result = '';
const vowels = new Set(['a', 'e', 'i', 'o', 'u']);
for (const char of str) {
if (!vowels.has(char.toLowerCase())) {
result += char;
}
}
return result;
}
Belarusian State University of Informatics and Radioelectronics - Computer science and programming technologies
A2+ (I am currently taking courses and improving my skills)