CV for RSSchool

Mukhammadali Madraimov

photo

Contact Info

Summary

My goal is to become a professional web developer. I want to create useful websites, making peoples life easier. Even if it is a website for cooking recipes. At least it will help them to make a tasty food.

Skills

Latest code examples

JavaScript code for checking if the brackets are balanced.


      const areBracketsBalanced = (str) => {
        let openBrackets = 0;
        let closeBrackets = 0;
        for (let i = 0; i <= str.length - 1; i += 1) {
            openBrackets += (str[i] === '(') ? 1 : 0;
            closeBrackets += (str[i] === ')') ? 1 : 0;
            console.log(openBrackets, closeBrackets);
        }
        if (openBrackets !== closeBrackets || str[0] === ')') return false;
        return true;
      };
      console.log(areBracketsBalanced('()'));
    

Experience

I have an experience in HTML coding for HTMLAcademy mailings with layouts for training.

Education

English

Lived in Europe for a year, studied engineering in English and defended my thesis.