avatar

DMITRY BERESNEV

Front-end Developer

About me:

My main goal is to get the necessary knowledge for further employment. I consider purposefulness, responsibility and the ability to solve tasks to be my distinctive abilities.

Contacts:

  • Location:

    Russia Nijni Novgorod

  • Telegram:

    Fronak

  • Discord:

    Fronak#4664

Skills:

  • HTML
  • CSS
  • SCSS
  • JS
  • Git\GitHub

Education:

  • HTML-Academy
  • RS-school stage-0, stage-1 (in process..)

Languages:

  • Russian - Native
  • English - A1

Code Example:

function fakeBin(x){
    let answer = ''
    
    for (let i = 0; i < x.length; i++) {
        answer += x[i] < 5 ? '0' : '1';
    }
    return answer
}