Piyush Raj (dragonn_ight)

Race #3

View Pit Stop page for race #3 by dragonn_ightGhost race

View profile for Piyush Raj (dragonn_ight)

Official speed 38.77 wpm (93.16 seconds elapsed during race)
Race Start May 8, 2024 4:40:17pm UTC
Race Finish May 8, 2024 4:41:50pm UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 29.73
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.'; } }