Shoemaker-Levy 9 (atthetop)

Race #36

View Pit Stop page for race #36 by atthetopGhost race

View profile for Shoemaker-Levy 9 (atthetop)

Official speed 50.14 wpm (86.64 seconds elapsed during race)
Race Start October 31, 2018 11:46:42pm UTC
Race Finish October 31, 2018 11:48:09pm UTC
Outcome No win (2 of 2)
Opponents 1. styrofoam (60.59 wpm)
Accuracy 92.0%
Points 40.95
Text #10012 (Length: 372 characters)

var $form, width, height, area; $form = $('#calculator'); $('#calculator').on('submit', function(e) { e.preventDefault(); console.log('Clicked submit...'); width = $('#width').val(); height = $('#height').val(); area = (width * height); if (area < 100) { debugger; // A breakpoint is set if the developer tools are open } $form.append('

' + area + '

'); });