3rd Place (bomtombadil)

Race #82

View Pit Stop page for race #82 by bomtombadilGhost race

View profile for 3rd Place (bomtombadil)

Official speed 33.44 wpm (129.90 seconds elapsed during race)
Race Start December 10, 2018 3:06:37am UTC
Race Finish December 10, 2018 3:08:47am UTC
Outcome No win (3 of 3)
Accuracy 96.0%
Points 27.31
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 + '

'); });