Khing (khairo_j1)

Race #2

View Pit Stop page for race #2 by khairo_j1Ghost race

View profile for Khing (khairo_j1)

Official speed 51.17 wpm (70.59 seconds elapsed during race)
Race Start June 2, 2023 4:26:26pm UTC
Race Finish June 2, 2023 4:27:36pm UTC
Outcome No win (1 of 1)
Accuracy 98.0%
Points 39.23
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.'; } }