
I’m an athlete. I am 28 years old. The sport is track and field. Worked in sports for 3 years. Graduated in 2018 from the University (Master of Sports) in Yekaterinburg. Strengths: diligence, diligence, responsibility, endurance, attentiveness
I have a desire to study in the field of IT in frontend development. There is no work experience in this field. I started to study the profession of frontend developer on my own
I finished Stage 0 at RS School.
const convert = (input, source, target, s = 0, str = '') => {
const fromInputToSourceSystem = () => {
input.split('').map(item => s = s * source.length + source.indexOf(item));
}
fromInputToSourceSystem();
const fromSourceSystemToTargetSystem = () => {
while (s > 0) {
str = target[s % target.length] + str;
s = Math.floor(s / target.length);
}
}
}
Rs-School - Stage #0.






Pre-Intermediate