user

Assalamu alaikum, I'm Nurjakhon :)

Front-End Developer

< I'm a graduate student at the university, about a year ago I decided to change my profession. I have become passionate about programming and especially in Web Development as this field involves unlimited opportunities for professional growth. Until now I have learned significant number of features of this field and I hope to gain more knowledge and streghen my skills with the help of rs school. I believe that my hard working ability and passion for learning new things lead me to become a proficient Frontend Developer. />

Why hire me

Hard skills

< HTML />

< CSS />

< Bootstrap />

< Tailwind />

< JavaScript />

< React />

< NodeJs />

< Figma />

< NodeJs />

< Git, GitHub />

< VSCode />

What I did?

Recent projects

HTML, CSS

Clone of Airbnb website

Airbnb, as in “Air Bed and Breakfast,” is a service that lets property owners rent out their spaces to travelers looking for a place to stay.

HTML, CSS

Clone of Airlab website

Airlab as in “Air Bed and Breakfast,” is a service that lets property owners rent out their spaces to travelers looking for a place to stay.

HTML, CSS, React, Redux

Clone of Gmail

Gmail is a free email service provided by Google. As of 2019, it had 1.5 billion active users worldwide. A user typically accesses Gmail in a web browser or the official mobile app.

HTML, CSS, JavaScript

Weather App

Type the place and find out the its current weather

HTML, CSS, JavaScript

Project management application

Project management application. Made with HTML, CSS, JavaScript

Where I gained knowledge?

Education and courses

Frontend Development course

Completed

iCode academy


JavaScript/Front-end. Stage 0

In progress

RS School


JavaScript full course

In progress

Mohirdev.uz


I can speak

Languages

Uzbek

Native

English

Upper-intermediate

Arabic

A1 level

Turkish

Basic

My code style

Code Example

 function solution (number){ 
   let sum = 0;
   for (let n = 1; n < number ; n++){
       if (n % 3 == 0 || n % 5 == 0){
          sum += n
        }
    }
      return sum;
 }