Sergey Durov
Email: sergssd@yandex.com
Mobile phone: +998903194042
My goal is to achieve a Frond-End Developer position, to create new and creative designs and patterns for web-sites, to learn more about modern technologies, especially frond-end interactions with AI, to work in team and make benefitial contribution for company.
HTML, CSS, JS(Bootstrap, JQUERY and basic React), basic Python, basic PHP.
//This code flips the number
function reverse (n) {
let str
if(n < 0) {
str = String(-(n))
} else {
str = String(n);
}
let arr = str.split('');
return +arr.reverse().join('')
}
OR
function reverse (n) {
let str;
(n < 0) ? str = String(-(n)) : str = String(n);
let arr = str.split('');
return +arr.reverse().join('')
}
Accomplished courses: HTML, CSS, JS, constantky watching IT streams.