-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathJsonResume.js
46 lines (38 loc) · 1.34 KB
/
JsonResume.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
// Question 2. Create your own resume in Json format
var resume = {
"Name": "Faiza Afrin",
"Qualification": "English and Communication",
"Email": "faizaafrin123@gmail.com",
"Phone":"+91-9876534679",
"Summary":["self-motivated and hardworking fresher seeking for an opportunity to work in a challenging environment to prove my skills and utilize my knowlege and intelligence in the growth of the organization"],
"EDUCATION": {
"Institution": "Annamalai University",
"University":"Annamalai University",
"Degree": "BA",
"Duration": "2013-2016",
},
"CERTIFICATIONS" : {
"Certificate" : "Salesforce Developer",
"Institution" : "Trialhead by Salesforce",
"Year" : "2022",
},
"LANGUAGES": {
"language": ("Tamil =>read,write,speak"),
"language1": ("English =>read,write,speak"),
"language2": ("Hindi=>read,write"),
},
"SKILLS": {
"Name" : ["Content writting",
"Blogging",
"Photography",
"Salesforce Apex"],
},
"LOCATION": {
"Address": "2/3 Pudhunagar main road, kuttalam",
"PostalCode": "609 801",
"City": "Mayiladudurai",
"District":"Mayiladudurai",
"State":"Tamilnadu",
},
}
console.log(resume);