JSFiddle - React, Tailwind, and code Playground

by Alex Cowan

JavaScript

function grad_credits(credits) {
  //in the Alex and Casey MBA, you need 55 credits to graduate
 
 if (credits > 54) {
    return ('you can graduate');
  } else {
    return ('you need more credits to graduate');
  }

}

x= grad_credits(50);
//to see if it's working since there's no connection to the View
console.log(x);