Lisbon, Portugal
I am originally from Ukraine and have been living in Portugal since 2010.
I have a background as a dental technician, where I worked with 3D modeling and combined technical and computer-based tasks.
Later, I transitioned into tourism and currently work as a tour guide. While developing my professional activities, I became interested in creating my own website, which led me to study web development.
I am learning HTML, CSS, JavaScript, and development tools such as Git, GitHub, and VS Code. I have completed several courses in web development and frontend fundamentals.
At the moment, I continue improving my practical skills as part of RS School.
Frontend:
Tools:
function countVowels(str) {
const vowels = 'aeiou';
let count = 0;
for (let char of str.toLowerCase()) {
if (vowels.includes(char)) {
count++;
}
}
return count;
}
console.log(countVowels("Hello World")); // 3