My photo

Alexei Kozovski

Junior Frontend Developer

Contacts

Skills

  • Java Basic
  • HTML, CSS
  • JavaScript
  • TypeScript
  • React
  • Git, GitHub
  • IntelliJ IDEA, VS Code

Languages

  • English - В1 (B2 - Epam test)

About myself

I currently live and work in Minsk. I'm 34 years old. I work as an engineer in a design institute. I am engaged in the development of power supply and electric lighting systems.

I have always been interested in programming. Three years ago I decided to change my profession and become a programmer. I started learning the Java programming language. But I had little free time and a lot of work.

Now I am full of energy and determination and ready to dive into learning front-end development. And I will go to the bitter end!


Experience

I have no programming experience. I have some experience with programming courses on Java and JavaScript


Projects


Education

  • Belarusian National Technical University
    • Energy Faculty (Electricity supply)
  • IT-Academy
    • Basics Computer Science
    • Programming on Java. Basics
  • RS School
    • JavaScript/Front-end. Stage#0
    • JavaScript/Front-end. Stage#1
    • JavaScript/Front-end. Stage#2

Code

Codewars Kata: Can we divide it?

Your task is to create the function isDivideBy to check if an integer number is divisible by both integers a and b.

let isDivideBy = (number, a, b) => {
    if (number % a === 0 && number % b === 0) {
      return true
    } else {
      return false
    }
  }