Roman Slesarau

Front-end Developer

CONTACT ME

Discord: SenjuLuv

Email: roman.slesareff@mail.ru

Telegram: @senjuluvv

SKILLS

  • HTML5

  • CSS

  • JavaScript Basics

  • Git, GitHub

  • VS Code

LANGUAGES

  • RUSSIAN

  • Native

  • ENGLISH

  • Medium

ABOUT MYSELF

Hi! My goal is to learn web development. I can spend a lot of time studying something interesting for me. My strengths are problem solving and fast learning. I want to gain new knowledge and skills.

EdUCATION

Gomel State University (GSU)

Faculty of Physics and IT

Specialty: Computer Physics

CODE

const { assert } = require("chai")

            function test(n, expected) {
              it(`n=${n}`, () => {  
                let actual = solution(n)
                assert.strictEqual(actual, expected)
              })
            }
            
            describe("basic tests", function(){
              test(10,23)
            })