About Me
I am a junior Fullstack Developer from Tashkent. I have a yearexperience in the field of Backend and Frontend developing. My dream is developing IT jobs in Uzbekistan and building a greatcorporation like Google! I have chosen my future job so I will do mybest in order to make my dream real!
Contact Info
- Email: asadbekraimov642@gmail.com
- LinkedIn: Asadbek Raimov
- Telegram: @freelanceall
- Discord username: raimovasad#0827
Hobbies
-
Sport
-
Reading
-
Travel
-
Films
Education
Web Development
Change IT Academy,
from January 2021 to September 2021
Mining Engineer
AF NUST MISIS,
from 2019 to 2024
Language
English language Level - B2 (upper-intermediate)
Official IELTS certificate of 6.5
Experience
Content Manager
2020-2021 Uzcard / Tashkent
I have worked as a content manager for 10 months. Usually, I had to register new goods from turkish website.
Frontend Developer
6 months Change IT Academy
In June 2021 I was employed as a trainee for Frontend Development. The internship ended in December 2021.
Skills
Sample Code
function validatePIN (pin) {
let result;
if(pin.split('').length !== 4 && pin.split('').length !== 6){
return result=false;
}
const arr = pin.split('')
for( elem of arr){
elem = parseInt(elem)
console.log(typeof elem);
console.log(isNaN(elem));
if(isNaN(elem)){
return result=false
}
result=true
}
return result;
}