Nikk (white13)

Race #3

View Pit Stop page for race #3 by white13Ghost race

View profile for Nikk (white13)

Official speed 34.09 wpm (105.95 seconds elapsed during race)
Race Start April 14, 2021 3:28:42am UTC
Race Finish April 14, 2021 3:30:28am UTC
Outcome No win (3 of 3)
Accuracy 93.0%
Points 26.13
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.'; } }