Advertisement
Guest User

Untitled

a guest
Sep 28th, 2016
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function isEdible() {
  2.   if (this.expirationDate > Date.now()
  3.       && this.approvedForConsumption === true
  4.       && this.inspectorId !== null) {
  5.         this.edibilityChecked = true;
  6.         return true;
  7.       } else {
  8.         return false;
  9.       }
  10. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement