| Race Result Details | 
| Racer | HK35C (erickwan0330) | 
| Race Number | 2 | 
| Date | Fri, 26 Jul 2024 2:23:08 | 
| Universe | code | 
| Speed | 25 WPM  Try to beat? | 
| Accuracy | 90.5% | 
| Rank | 9th place (out of 9) | 
| Opponents | adrianop (7th place) california_heat_wave (3rd place) casey_2000 (2nd place) diudiudiudiu (4th place) kind_hat1628 (1st place) wyshcheung (5th place) | 
Text typed:
| 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.';
  }
}— (other)
          by http://www.javascriptbook.com
          (see stats) |