
Front-end developer (React)
Front-end developer with confident knowledges of JS and React. I have experience of developing adaptive web-applications using API and data-bases. Also I have develop games on Unity (C#), C++ (console).
I like to dive into whole understanding of essence of application. So I can make my working process more intresting. My favorite part of development is working with API and solving algorithmic tasks.
I’m searching a work, where I improve my developer skills and get practical experience of applications development.
Codewars: Given a lottery ticket (ticket), represented by an array of 2-value arrays, you must find out if you’ve won the jackpot.
function bingo(ticket, win){
let miniWins = 0;
for (let i = 0; i < ticket.length; i++) {
if(ticket[i][0].indexOf(String.fromCharCode(ticket[i][1])) !== -1) {
miniWins++;
if (miniWins >= win) return 'Winner!';
}
}
return 'Loser!';
}