Guest User

Untitled

a guest
Feb 25th, 2018
116
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. var student = function () {
  2. var db = {host:"localhost", name:"student", username:"me", password: "adda"};
  3. return {
  4. get : function (id) {
  5. console.log(`Getting Student ${id} from db`);
  6. if(id){
  7. return {
  8. name: 'Oliver Mensah',
  9. school: 'Ashesi University',
  10. country: 'Ghana'
  11. }
  12. }
  13. },
  14. save: function (student) {
  15. console.log(`Saving ${student.name} to the db`);
  16. }
  17. }
  18. }
  19. student().get(1)
Add Comment
Please, Sign In to add comment