Navin (nikash_)

Race #10

View Pit Stop page for race #10 by nikash_Ghost race

View profile for Navin (nikash_)

Official speed 30.31 wpm (119.17 seconds elapsed during race)
Race Start June 6, 2023 9:53:52am UTC
Race Finish June 6, 2023 9:55:51am UTC
Outcome No win (2 of 8)
Opponents 1. varun_1408 (33.10 wpm)
Accuracy 94.0%
Points 23.24
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.'; } }