Melissov Nurdaulet

Junior Frontend Developer

About Me

I’m 19 years old student from Taraz(currently Almaty). I started my Frontend career from University Web Development class. I this class i got a basic of HTML,CSS,JS and working with Angular framework.
For this year Main goal - to become Junior Frontend Developer and get intern or job. For this year i want to learn frameworks Vue and React.

Skills

  • HTML, CSS
  • JavaScript Basics
  • C++, Python Basics
  • Git, GitHub
  • Postman StarUML
  • Basic of React JS

Courses

  • RS Schools Course «JavaScript/Front-end. Stage 1»(Loading)
  • University Course React JS(Loading)
  • University Course Web Development(AngularJS+Django)
  • University Course OOP in Java
  • University Course Algorithms in C++
  • JetBrains Course Frontend(loading)

Code Example

    Problem from Codewars

    Complete the function that takes an odd integer
    (0 < n < 1000000) which is the difference between
    two consecutive perfect squares,and return these 
    squares as a string in the format “bigger-smaller”.
    
    Solution:
        const findSquares = num => {
            let max = ((num+1)/2) ** 2;
            let min = ((num+1)/2-1) ** 2;
            return `${max}-${min}`;
            };  

Experience

Educational Projects