avatar

Dzmitry Zhykh

Junior Front-End Developer

Contacts

  • Brest, Belarus
  • Email: dimazhich@gmail.com
  • Github: T1moN-Pumba
  • Telegram: @DzZhkh
  • Discord: T1moN1#8570

Skills

  • GitHub
  • HTML
  • CSS
  • JS
  • VS Code

Courses

  • Udemy: JavaScript + React
  • HTML Academy: HTML/CSS
  • RS-school: JS/FE

Summary

My goal is to develop, surround myself with good people, learn and have fun. My strengths: communication skills, eloquence and, most importantly, a sense of humor. I have no experience in IT. I try to learn every day, whether it's new exercises in the gym or new cooking recipes or car repairs, etc. My main goal today is to become a strong programmer and develop in this direction. And of course to have fun.

Education&English

Brest State Technical University

English: B1 - Pre-Intermediate

Code

    
function solution(str, ending){
  if (typeof(str) != "string" || typeof(ending) != "string") 
    throw "wrong type";
  if (ending.length > str.length)
    return false;
  return str.substr(str.length-ending.length, ending.length) == ending;
}