Calculus (uchihalol)

Race #9

View Pit Stop page for race #9 by uchihalolGhost race

View profile for Calculus (uchihalol)

Official speed 46.45 wpm (93.52 seconds elapsed during race)
Race Start November 1, 2018 6:29:47pm UTC
Race Finish November 1, 2018 6:31:21pm UTC
Outcome No win (3 of 3)
Opponents 1. styrofoam (68.11 wpm)
2. atthetop (58.77 wpm)
Accuracy 94.0%
Points 37.93
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 + '

'); });