Anna Vasilevich
Contacts
About Me
Over the past year, I’ve built 15+ projects, including landing
pages, SPAs, and web applications. My focus has been on React(Next),
Angular TypeScript: from developing new features to refactoring
legacy code and migrating projects. I’ve worked with third-party
APIs for authentication, product management, and data fetching.
Additionally, I’ve solved 130+ Codewars challenges, sharpening my
problem-solving skills in algorithms and data structures.
My strengths
Skills
Code example
function becomeBorodinskiy() {
let breads = ["🥖 baguette", "🥯 bagel", "🥐 croissant", "🍞 BORODINSKIY"];
let random;
let tries = 0;
do {
random = Math.floor(Math.random() * breads.length);
console.log("You are:", breads[random]);
tries++;
} while (breads[random] !== "🍞 BORODINSKIY");
console.log("It took " + tries + " tries to finally become 🍞 BORODINSKIY 🎉");
}