Guest User

Untitled

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