Guest User

Untitled

a guest
Jan 21st, 2018
225
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. var book = {
  2.  
  3. tarzan : { publisher: "Pub A", author: "Author A", pageCount: 300},
  4. "hidden universe" : { publisher: "Pub B", author: "Author B", pageCount: 1000},
  5. addBook : ....,
  6.  
  7. removeBook : function(name) {
  8. this[name].name = name; //<-
  9. var temp = this[name];
  10. delete this[name];
  11. return temp;
  12. }
  13.  
  14. };
Add Comment
Please, Sign In to add comment