JSFiddle - React, Tailwind, and code Playground
by Alex Fogarty
JavaScript
var oatmeal = 5, sugar = 10;
var howManyCookies = oatmeal + sugar;
//you created two variables
alert (howManyCookies); // alert to see the math result
//next, you create another variable based on those already created, and then run the alert for that.
var cookiesForEachPerson = howManyCookies / 3;
alert (cookiesForEachPerson);