myCVphoto

Contacts

Education

  • 2017 - 2021

    AUES - Electric Engineering
  • 2021 - 2022

    JustCode - Frontend developer
  • 2023

    RS School - Frontend/React Developer

Mambet Aibar

Front-End developer

About me

I am self-taught guy who learn everything by yourself. I'm suffer a lot through the path and currently hoping to find a job. In sundays i love running, walking in the city and listening some lofi music.

Skills

  • HTML/HTML5, CSS3/SCSS, BEM
  • Javascript/ES6
  • Typescript
  • React/Redux/React Router
  • Node js/Express
  • Figma, Git, Webpack
  • English - B2.The results of my online testing from EFSET

Code example

Assignment: find a unique number from array


function findUniq(arr) {
  let arr1 = [];
  let arr2 = [];
    for (let num of arr) {
      if (arr1.length === 0) {
        arr1.push(num);
      } else {
          if (num === arr1[0]) {
         arr1.push(num);
      } else {
         arr2.push(num);
              }
             }
            }
 return arr1.length > arr2.length ? 
 arr2[0] : 
 arr1[0]}

My projects