master (masterthias)

Race #2

View Pit Stop page for race #2 by masterthiasGhost race

View profile for master (masterthias)

Official speed 39.30 wpm (110.53 seconds elapsed during race)
Race Start November 5, 2018 7:19:24am UTC
Race Finish November 5, 2018 7:21:15am UTC
Outcome No win (3 of 3)
Accuracy 94.0%
Points 32.10
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 + '

'); });