Private user

Private user posted an update

const project = "AESA Finance";
let submissionStatus = "pending";

setTimeout(() => {
  submissionStatus = "complete";
  console.log(`\u1F680 ${project} has been submitted! \u1F680`);
}, 0); // 0 because we did it. \u1F4AA

if (submissionStatus === "pending") {
  console.log(`Not an option.`);
} else if (submissionStatus === "complete") {
  console.log(`\u1F680 Great news! ${project} has successfully landed in the Pebble Frostbyte Hackathon universe! \u1F680);
} else {
  console.log(`Not an option.`);
}

Log in or sign up for Devpost to join the conversation.