mairzydoats_mason (mairzydoats_mason)

Race #146

View Pit Stop page for race #146 by mairzydoats_masonGhost race

View profile for mairzydoats_mason (mairzydoats_mason)

Official speed 48.53 wpm (89.51 seconds elapsed during race)
Race Start January 19, 2019 7:49:12pm UTC
Race Finish January 19, 2019 7:50:42pm UTC
Outcome Win (1 of 3)
Accuracy 99.0%
Points 39.64
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 + '

'); });