my-foto

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

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()