avatar

Curriculum Vitae Irakli Ambroladze Software developer Crafting software is not just about writing code, but about delivering value

About me

Software Engineer with a unique interdisciplinary background combining technical expertise, business acumen, and analytical thinking. Specialized in building scalable web applications, ERP systems, and financial dashboards using modern JavaScript technologies.

My diverse experience in business management, academic research, and software development enables me to bridge technical solutions with real-world business needs effectively.

contact

Codewars Kata example — Only One Flag

Description: Write a function that returns true if exactly one boolean flag is true.

Solution (JavaScript)

  function onlyOne(...args) {
    let countTrues = 0;
    args.forEach((arg) => arg === true && countTrues++);
    return countTrues === 1;
  }

Note: A complete list of my projects is available in my portfolio. You can find it at: https://irakliambroladze.vercel.app/