DEV Community

Discussion on: Daily Challenge #28 - Kill the Monster!

Collapse
 
wheatup profile image
Hao

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}`;
}
Collapse
 
nishu1343 profile image
nishu1343

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;