We're a place where coders share, stay up-to-date and grow their careers.
Solution in javascript:
const killMonsters = (h, m, dm) => { const hits = Math.floor((m - 1) / 3); const damage = hits * dm; const health = h - damage; return health <= 0 ? 'Hero died' : `hits: ${hits}, damage: ${damage}, health: ${health}`; }
Hello Hao, could u explain these 3 lines.ima beginner and trying to understand
const hits = Math.floor((m - 1) / 3); const damage = hits * dm; const health = h - damage;
Solution in javascript:
Hello Hao, could u explain these 3 lines.ima beginner and trying to understand
const hits = Math.floor((m - 1) / 3);
const damage = hits * dm;
const health = h - damage;