Vishesh (vishesh_patel)

Race #14

View Pit Stop page for race #14 by vishesh_patelGhost race

View profile for Vishesh (vishesh_patel)

Official speed 33.38 wpm (108.21 seconds elapsed during race)
Race Start May 26, 2023 11:28:13am UTC
Race Finish May 26, 2023 11:30:01am UTC
Outcome Win (1 of 3)
Accuracy 94.0%
Points 25.59
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.'; } }