Kirin (arya_juniko)

Race #2

View Pit Stop page for race #2 by arya_junikoGhost race

View profile for Kirin (arya_juniko)

Official speed 27.50 wpm (131.35 seconds elapsed during race)
Race Start June 29, 2023 7:38:48am UTC
Race Finish June 29, 2023 7:41:00am UTC
Outcome Win (1 of 3)
Opponents 2. ssb456 (27.02 wpm)
Accuracy 96.0%
Points 21.09
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.'; } }