Piyush Raj (dragonn_ight)

Race #2

View Pit Stop page for race #2 by dragonn_ightGhost race

View profile for Piyush Raj (dragonn_ight)

Official speed 40.50 wpm (89.19 seconds elapsed during race)
Race Start May 8, 2024 4:38:36pm UTC
Race Finish May 8, 2024 4:40:05pm UTC
Outcome No win (2 of 3)
Accuracy 94.0%
Points 31.05
Text #10015 (Length: 301 characters)

function calculateArea(width, height) { try { var area = width * height; if (!isNaN(area)) { return area; } else { throw new Error('calculateArea() received invalid number'); } } catch(e) { console.log(e.name + ' ' + e.message); return 'We were unable to calculate the area.'; } }