
Insar Aganov
Contacts
-
Russia, Kazan
-
t.me/insar89
-
insar21@gmail.com
-
insar89
Skills
- HTML 3/10
- CSS 2/10
- JS 4/10
- Git 3/10
Education
Kazan (Volga region) Federal University. The Bachelor in Applied Mathematics
Summary
Changing occupation. Looking for something where I need to constantly study, improve myself.
- Care for the elderly 7 years
- Virtual goods trading 13 years
Code example
Task on codewars
const uniqueInOrder = (iterable) => {
if ( Array.isArray(iterable) )
return iterable.filter( (el, i, a) => (i > 0) ? a.indexOf(el, i - 1) === i : a.indexOf(el) === i);
return iterable.split('').filter( (el, i, a) => (i > 0) ? a.indexOf(el, i - 1) === i : a.indexOf(el) === i);
};
English
B1