JSFiddle - React, Tailwind, and code Playground

by akang2

JavaScript

//http://teknologenie.github.io/GeekWise-JavaScript-1/day3.html
//geekwise Aaron Day 3

var thePrompt1 = prompt('gimme number 1 ', 'here');
var thePrompt2 = prompt('gimme number 2', 'here');
var thePrompt3 = prompt('gimme number 3', 'here');

var parsedThePrompt1 = parseInt(thePrompt1);
var parsedThePrompt2 = parseInt(thePrompt2);
var parsedThePrompt3 = parseInt(thePrompt3);