Advertisement
finalmail

test

Jul 15th, 2019
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1.   return {
  2.     firstName: 'Milen',
  3.     lastName: 'Rabadzhiev',
  4.     location: {
  5.       country: 'country',
  6.       town: 'town',
  7.       streetAddress: 'street address 3',
  8.       zipCode: '12321',
  9.     },
  10.     sex: Sex.Male,
  11.     experiences: [
  12.       {
  13.         position: 'Exp 1 asdasdsadasdas',
  14.         company: 'Company 1',
  15.         description: 'asdasdasdas  DEscriptionDEscription DEscription',
  16.         startDate: new Date(),
  17.         endDate: new Date(),
  18.         currentlyWorking: false,
  19.       }
  20.     ],
  21.     education: [
  22.       {
  23.         field: {
  24.           name: 'Mn qk universitet 23',
  25.           positions: []
  26.         },
  27.         fromYear: new Date(),
  28.         toYear: new Date()
  29.       },
  30.       {
  31.         field: {
  32.           name: 'Mn qk universitet 23',
  33.           positions: []
  34.         },
  35.         fromYear: new Date(),
  36.         toYear: new Date()
  37.       },
  38.     ],
  39.     phoneNumber: '026356464',
  40.     skills: [{name:'skill1', points: 10}, {name:'engineering', points:3}, {name:'cooking', points:9}]
  41.   };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement