Liubov Kurij
About me
I study, develop, live. I am mastering the field of IT technology. I am flexible, teachable, ready for criticism and take it from a positive side. I am an optimist, I am interested in the psychology of raising children, relationships, communication and personal development. I love when work is completed, when you are paid according to your productivity and you are appreciated as a specialist. Ready to make maximum efforts for effective work and career development. My creed: everything that is done, is done for the best.
Education and qualifications
- Sept 2007 - June 2012 Master of Biology and Chemistry Ivan Franko National University of Lviv
- November 2022 Soft Scills in Genius Academy
- November 2022 English language -level A2 in Campster
- Desember 2022 HTML5 and CSS3 Starter in ITVDN
- January 2023 JS self-education and RS School. JS stage 0
My projects
My work
function finalGrade (exam, projects) {
if (exam >= 90 && projects >= 10){
return 100;
} else if ( exam >= 75 && projects >= 5) {
return 90;
} else if ( exam >= 50 && projects >= 2) {
return 75;
} else {
return 0;
}};