About me:
My name is , I am 30 years old. I am a student at the RS School. I am currently learning JavaScript and Frontend development.
I am a quick learner and always eager to improve my skills. I enjoy working on projects that challenge me and allow me to grow as a developer.
In my free time, I like to read books, play video games, and spend time with friends and family.
Skills:
- HTML
- CSS
- JavaScript
- Git
Languages:
- Crimean-Tatar - Native
- English - B1
- Russian - Native
- Ukrainian - Native
- Turkish - C1
- Arabic - A2
Contact me:
- Phone: +353873851923
- Email: Write me
Code:
Код программы
function checkParent (src, dest) {
while (src != null) {
if (src.tagName == dest) return src
src = src.parentElement
}
return null
}