Advertisement
Guest User

zedtr

a guest
Feb 13th, 2016
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. // Setup
  2. var myObj = {
  3.   gift: "pony",
  4.   pet: "kitten",
  5.   bed: "sleigh"
  6. };
  7.  
  8. function checkObj(checkProp) {
  9.   // Your Code Here
  10.  
  11.   if (myObj.hasOwnProperty(checkProp)) {
  12.     return checkProp;
  13.   }else {
  14.    
  15.     return "Not Found";
  16.   }
  17. }
  18.  
  19. // Test your code by modifying these values
  20. checkObj("gift");
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement