Junior Frontend Developer Bilbao, Spain | E-mail | GitHub | Discord
Studying frontend development with a growing interest in game creation. Passionate about learning new technologies and building interactive, user-friendly applications. Ready to contribute to a team and grow through hands-on experience.
Desarrollador Petrozavodsk, Russia | August 2023 - August 2024 | 1 year
Desarollo de sistemas de gestion de documentos para la Administracion regional.
Projects:
Chatbot Management with Text-to-Speech Functionality:
Responsibilities:
Vocational Education and Training (VET) Diploma (in progress)
Field of Study: Information Systems and Programming
Specialization: Web and Multimedia Application Developer
Qualification Level: EQF Level 4 (expected)
Institution: S.Y. Witte Moscow University, Moscow, Russia
Expected graduation: December 2025
Frontend Developer Certification - HTML Academy
Auxiliary Assembly and Maintenance of Microcomputer Systems - Ipartek Formación
function spinWords(string){
let newString = [];
for (let word of string.split(" ")) {
if ( word.length >= 5) {
newString.push (word.split('').reverse().join(''));
} else {
newString.push(word);
}
}
return newString.join(' ');
}
console.log(spinWords("Hey fellow warriors"));