Kavindu (kavindu_jayarathne)

Race #14

View Pit Stop page for race #14 by kavindu_jayarathneGhost race

View profile for Kavindu (kavindu_jayarathne)

Official speed 23.66 wpm (152.66 seconds elapsed during race)
Race Start May 29, 2023 4:40:24pm UTC
Race Finish May 29, 2023 4:42:57pm UTC
Outcome Win (1 of 3)
Accuracy 92.0%
Points 18.14
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.'; } }