kaatumanidhan (kattumanidhan)

Race #2

View Pit Stop page for race #2 by kattumanidhanGhost race

View profile for kaatumanidhan (kattumanidhan)

Official speed 54.67 wpm (66.07 seconds elapsed during race)
Race Start June 16, 2023 3:46:44pm UTC
Race Finish June 16, 2023 3:47:50pm UTC
Outcome No win (2 of 2)
Opponents 1. dev_manush (59.61 wpm)
Accuracy 93.0%
Points 41.92
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.'; } }