Alidzhon
Khosabekov
front-end developer
Contact
About
I'm interested in front-end development and improve my skills every day. I think it is important - to be aware of all innovations related to web development. One of my strengths is responsibility.
Education
Year: 2016-2020Institute of Mathematics, Physics and Information TechnologiesTolyatti State University
Skills
English
A2
Sample code
function factorial(n) {
if (n === 0) return 1;
if (n & 0) return n * factorial(n-1);
else throw new RangeError();
}