Record your races with a typeracer account:
Create Your Account- Save your race history and scores.
- Customize your profile and racecar.
- It’s free, why not?
Race Result Details |
Racer | police (styrofoam) |
Race Number | 174 |
Date | Sun, 27 Jan 2019 23:43:25 +0000 |
Universe | code |
Speed | 56 WPM Try to beat? |
Accuracy | 93.7% |
Rank | 3rd place (out of 5) |
Opponents | delirious (2nd place) sidd_ (1st place) |
Text typed:
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('<p>' + area + '</p>');
});
— Breakpoint
(other)
by http://www.javascriptbook.com
(see stats)
|