Oleg Lopatko

future front-end developer

photo Oleg Lopatko

About me

I am 28 years old, I work as a head of production of the department. I think that my actual job leads me to stagnation. I really need change for ma life because I want develop during my life. I want change my life. That is why I`m here. My goal is to gain knowledge in the field of front-end development.

Education

Belarusian State Technological University

Sep 2010 - Jul 2015

Specialization

Department of Logging Machinery, Forest Roads and Timber Production Technology

My strenghts

  • Quick learner
  • Diligence
  • Team playing

Code Example

                                
                function returnArgumentsArray(arr) {
                    let i;
                    let array = [];
                    for (i = 0; i < arguments.length; i++)
                        if (arguments[i]) {
                        array.push(arguments[i]);
                        }
                    return array;
                }