ishwarendra (ishwarendra)

Race #6

View Pit Stop page for race #6 by ishwarendraGhost race

View profile for ishwarendra (ishwarendra)

Official speed 56.35 wpm (64.10 seconds elapsed during race)
Race Start April 16, 2023 7:19:21pm UTC
Race Finish April 16, 2023 7:20:25pm UTC
Outcome Win (1 of 2)
Accuracy 96.0%
Points 43.20
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.'; } }