MBA Grad Calculator I

MBA Grad Calculator I

by Alex Cowan

JavaScript

const credits = 50;

//in the Alex and Casey MBA, you need 55 credits to graduate

if (credits > 54) {
  console.log('you can graduate');
} else {
  console.log('you need more credits to graduate');
}