Kendzhaliiev Ilias

Junior Frontend Developer

Profile Picture

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:


Languages:


Contact me:


Code:

Код программы

function checkParent (src, dest) {
while (src != null) {
if (src.tagName == dest) return src
src = src.parentElement
}
return null
}