profile photo

Nikolay Yakovlev

Junior Frontend Developer

Contacts

Location

Yekaterinburg, Russia

Phone

+79923321384

Email

n.yakovlev96@gmail.com

Links

About me

  • I'm 28 years old
  • Love to learn
  • Love to make life around better
  • Team player

Skills

  • HTML, CSS, JavaScript
  • GIT, Visual Studio Code

Code examples

Code for Codewars kata "Square Every Digit": this function squares every digit of a number and concatenate them. For example, if we run 9119 through the function, 811181 will come out, because 92 is 81 and 12 is 1.

                         
    function squareDigits(num){
    let num_string = num.toString();
    let square = 0;
    let new_string = '';
                
    for(let i = 0; i < num_string.length; i++){
    console.log(square = Math.pow(parseInt(num_string[i], 10), 2));
    new_string = new_string + square;
    }
    return parseInt(new_string, 10);
                        
                    

Work experience

No relevant work experience yet. Did a few learning projects (see my GitHub, link below).

Education

  • Ural Federal University (Russia, Yekaterinburg). Institute: Ural Institute of Humanities. Specialty: socio-cultural service and tourism. Finished in 2015.
  • CS50. Introduction to the intellectual enterprises of computer science and the art of programming (In Progress, doing week 9 and then FInal Project), 2021
  • The Rolling Scopes School (In Progress), 2021

English

B2 (Upper-Intermediate). Practised during my work as a receptionist, also had an individual and group tutoring experience (as a tutor myself).