Advertisement
peacestorm

MAYO!!!!11!!1

Dec 27th, 2016
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. function Mayo() {
  2.     //yummy
  3. }
  4.  
  5. function isYummy(food) {
  6.     if(food instanceof Mayo)
  7.         return true;
  8.     return false;
  9. }
  10.  
  11. alert("Mayo is " + isYummy(new Mayo())?"yummy":"not yummy");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement