Lukyanovich Aliaksandr

FRONT END DEVELOPER

About Me:

I am 37 years old, I work as a environmental protection engineer. I really need in activities where I can develop during my life. My goal is to gain knowledge in the field of front-end development.

Languages:

  • Russian - native speaker
  • English - basic knowledge

Code Examples:

                        
                            function arithmetic(a, b, operator){
                                if (operator === "subtract") {
                                  return a - b;
                                } else if (operator === "add") {
                                   return a + b;  
                                } else if (operator === "multiply") {
                                   return a * b;
                                } else if (operator === "divide") {
                                  return a / b;
                               }
                                 }