Junior Frontend Developer
I am a self-taught web developer. I have also been a content manager and website administrator. Furthermore, I have more than a year of experience in web development. I specialize in responsible design, HTML5, CSS3, and JavaScript. I am also ready for remote work.
Skills
Certificates:
Language
-
• English
(Professional Working Proficiency) -
• Russian
(Native)
Interests
Projects
Body mass index calculation
function bmi(w, h) {
let indexHeight = Math.pow(h, 2);
let index = w ⁄ indexHeight;
if(index ≤ 18.5) {
return "Underweight";
} else if(index ≤ 25.0) {
return "Normal";
} else if(index ≤ 30.0) {
return "Overweight";
} else {
return "Obese";
}
}
Read more
Code exampleSet alarm, function
function setAlarm(employed, vacation) {
if (employed && !vacation) {
return true;
} else if (!employed && vacation) {
return false;
} else {
return false;
}
}
Read more
Code example