photo

Irakli Zaridze

Contact information:

About myself:

When I started studying IT at the Technical University, I was introduced to HTML and CSS for the first time. I became interested in web development and soon learned about Rs School free courses. After the preparatory course,I am going to take a basic JavaScript course.I am also going to master the back-end.

Skills and Proficiency

  • Web-development: HTML5, CSS3
  • Version Control: GIT, Github
  • Development-tools: VS code

Courses

  • Wayup : Javascript: Погружение
  • Wayup : Веб-Верстальщик: Начало

Education

Georgian Technical University

Languages

  • Georgian - Native
  • English - Intermediate
  • Russian - Basic

Code

                  
function finalGrade (exam, projects) {
if (exam > 90 || projects > 20){
console.log("100");
} else if ( exam > 75 && projects >= 5) {
console.log("90");
} else if ( exam > 50 && projects >= 2) {
console.log("75");
} else {
console.log("0");
}
}
finalGrade(78 , 3);