my photo

Hello! I'm Gulzar!

Junior Frontend Developer

Contacts:

  • Telegram: @abdullabaeva
  • E-mail: gulzar.abdullabaeva.kk@gmail.com
  • Instagram: @gulzarcooks

Skills and Proficiency:

  • HTML5, CSS3
  • JavaScript Basics
  • Git, GitHub
  • VS Code
  • Adobe Photoshop, Illustrator, Figma

Code example:

From leetcode.com Given an array of integers nums and an integer target, return indices of the two numbers such that they add up to target. You may assume that each input would have exactly one solution, and you may not use the same element twice. You can return the answer in any order.

                        const nums = [2, 7, 11, 15];
                        const target = 9;
                        
                        let twoSum = function(nums,target) {
                            let map = new Map;
                            for (let i=0; i=nums.length;i++) {
                                let complement = target-nums[i];
                                if(map.has(complement)) {
                                    return[map.get(complement),i]
                                }
                                map.set(nums[i],i);
                            }
                            
                        }
                        console.log(twoSum(nums,target));
                       
                    

Courses:

  • HTML, CSS, JS and React at **Jyldyz Academy** (completed)
  • Web Design on *freecodecamp.com* (completed)
  • RS Schools Course «JavaScript/Front-end. Stage 0» (in progress)

Languages:

  • English: Advanced
  • Korean: Basic
  • Turkish: Advanced