Portfolio website
It is a personal website designed in Figma,developed using Html5,Css3,and Javascript tools. Worked as a web designer and developer.
Link to source code

Creative detail-oriented junior Front End Web Developer.
Skilled in designing,developing,troubleshooting responsive
websites.
Proficient in HTML5,CSS3,JAVASCRIPT(ES6),user interface and user
experience (UI/UX) and in learning process of modern libraries and
frameworks.Experienced with Trello,Miro,Notion.Well
self-organized,team player,self-motivated and passionate to learn
new skills and solve problems.
Task:
Implement the function which takes an array containing the names of people that like an item.
It must return the display text as shown in the examples:
[] --> "no one likes this"
["Gulia"] --> "Gulia likes this"
["Jacob", "Alex"] --> "Jacob and Alex like this"
["Max", "John", "Mark"] --> "Max, John and Mark like this"
["Alex", "Jacob", "Mark", "Max"] --> "Alex, Jacob and 2 others like this"
function likes(arr){
switch(true){
case arr.length==0:
return arr + "no one likes this";
case arr.length==1 :
return arr + " likes this";
case arr.length==2 :
return `${arr[0]} and ${arr[1]} like this`;
case arr.length==3 :
return `${arr[0]}, ${arr[1]} and ${arr[2]} like this`;
case arr.length >=4 :
return `${arr[0]}, ${arr[1]} and ${arr.length-2} others + like this`;
}
}
console.log(likes(["Gulia","Alex","Aysal","Teo","Cairo"]));
It is a personal website designed in Figma,developed using Html5,Css3,and Javascript tools. Worked as a web designer and developer.
Link to source codeIt is browser-based online Tetris game designed in Figma,developed using Html5,Css3,Javascript tools.Designed and developed by me.
Link to source codeProjects like heart trial animation,JS quote Generator and more...
Link to source code| LANGUAGE | LEVEL |
|---|---|
| Kyrgyz | Native / C2 |
| Turkish | Advanced / C2 |
| Russian | Advanced / C2 |
| German | Upper-intermediate / B2-C1 |
| English | Upper-intermediate / B2 |
I learned the basics of English at school and English courses. After I improved my English language skills with pre-sessional English programm at the University and during internships,student exchange programs abroad. I follow all courses related to programming and computer science in English.