
About Myself
I am a teacher of English. I work for Skyeng. I have students all over the world. I really like my job but I want to try something new. So my goal now is to work as a front-end developer for an international company. I have necessary soft skills such as adaptability, communication skills, self-motivation, teamwork, problem-solving, stress resistance, time-management and of course emotional intelligence.Two years ago I studied HTML, CSS, JavaScript at SkyPro. But it was long ago, so I need to refresh my knowledge and obtain some to become a successful and reliable front-end developer.
Skills
- HTML
- CSS
- JS
- Git
- Soft Skills
English
C1(Advanced)
Tatyana Koryachkina
Junior Front-End Developer
Contacts
- Location: Nizhny Novgorod, Russia
- Phone Number: +79527742163
- Email Address: tatyanakoryachkina@yandex.ru
- Github:tatyanakorlarina
- Telegram: @tatyanakorlarina
Education
- Higher Education: Nizhny Novgorod Linguistic University
- Courses: SkyPro (web-development)
Projects
Code Example
function howManydays(month){
var days = 28 || 30 || 31;
switch (month){
case 2:
return 28
case 4:
case 6:
case 9:
case 11:
return 30
}
return 31
}