Guest User

Untitled

a guest
May 26th, 2018
92
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. <cfscript>
  2.  
  3. // Execute Test
  4. test();
  5.  
  6. private void function test()
  7. {
  8. // Mock Data
  9. var shop = {
  10. "getCheese" : function() {return "CHEESE_SANDWICH";},
  11. "hasCheese" : function() {return true;}
  12. };
  13.  
  14. // My Sandwich
  15. var sandwich = null;
  16. if(shop.hasCheese()) sandwich = shop.getCheese();
  17. writeDump(sandwich);
  18. }
  19.  
  20. </cfscript>
Add Comment
Please, Sign In to add comment