Levashov Sergey

My photo

Junior Frontend Developer(in progress)

Contact information:

About me:

I am 37 years old, I am from Minsk (Belarus). Married, two children (10 & 1 y.o.). I graduated from the institute with a degree in economics-management, but my work at the moment is not related to my education. I have always been interested in the IT field, therefore, having enough free time, I decided to develop in this direction. It is difficult to select tasks on my own and follow the sequence in learning, so I decided to take a course where mentors will help me organize the learning process and pass on their knowledge to me in an orderly manner. Sincerely, SL.

Skills and Proficiency:

Code example:

Task. Create an empty array. Add numbers from 10 to 20 inclusive. Delete the first element from an array. Add numbers 32, 45, 50 starting from the index 3 to the array. Add number 5 to the beginning of the array. Display the length of the array in the console.
                
                    var numArray = []; 
                    for (var i=10; i <= 20; i++) {
                    numArray.push(i);
                    }
                    numArray.shift();
                    numArray.splice(3,0,32,45,50);
                    numArray.unshift(5);
                    console.log(numArray.length); 
                    console.log(numArray);
                
            

Courses:

Languages:

  1. English - Intermediate (according to the online test at EFset www.efset.org) Results screenshotTest result
  2. French - DELF/DALF B1 Certificate
  3. Russian - Native