Contacts
- Grodno, Belarus;
 - +375-33-310-61-62;
 - glebikaa@mail.ru;
 - Aleksandr-Glebik;
 - glebikaa#0710;
 
Skills
- HTML
 - CSS
 - JS (Basic)
 - GitHub
 - Figma
 - NodeJS
 - WebPack
 
Languages
- Russian - Native;
 - English - A1 (studying now);
 - Polish - A1;
 
Aleksandr Glebik
front end developer
About me
I am 30 years old, for the last 6 months I have been studying to be a front-end developer, I am also learning English.
This is my second attempt at a JavaScript / Front-end course. Stage 0 "at the RS school.
This time I plan to complete the RS School courses completely, having completed all the tasks, having studied and consolidated in practice all the information received.
In 2022, I want to become a full-fledged specialist and be in demand in the labor market.
Education
- 
                University:
                
Belarusian State Technological University, specialty "mechanical engineer";
 - Course:
 
Code Example
                function getTime() {
                let date = new Date()
                let hours = date.getHours()
                let minutes = date.getMinutes()
                let seconds = date.getSeconds()
                clockTitle.innerHTML = `${hours < 10 ? `0${hours}`:
                hours}:${minutes < 10 ? 
`0${minutes}`:
                minutes}:${seconds < 10 ? `0${seconds}`: seconds}`
                }
                function init() {
                setInterval(getTime, 1000)
                }
                init()