About Me

I have good interpersonal skills, am an excellent team worker and very willing to learn and develop new skills.

My project

Start clean

Code Example


            function changeColor() {
                // Генерируем случайный цвет
                let color = '#' + Math.floor(Math.random()*16777215).toString(16);
                // Применяем цвет к тексту абзаца
                document.body.style.color = color;
            }