Skip to content

Instantly share code, notes, and snippets.

@codecademydev
Created February 3, 2019 16:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codecademydev/494fa5e8a18c09ef11e78ada7816717b to your computer and use it in GitHub Desktop.
Save codecademydev/494fa5e8a18c09ef11e78ada7816717b to your computer and use it in GitHub Desktop.
Codecademy export
// Write your code below
let cupsOfSugarNeeded = 3;
let cupsAdded = 0;
do {
cupsAdded = cupsAdded ++;
} while (cupsAdded < cupsOfSugarNeeded);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment