-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathResume data Json Format.js
58 lines (56 loc) · 1.24 KB
/
Resume data Json Format.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
47
48
49
50
51
52
53
54
55
56
57
58
let myResume={
"basics": {
"name": "Dinesh Kumar",
"email": "stardinesh4@gamil.com",
"phone": 8682935481,
"degree": "MBA",
"location": {
"address": "Anna nagar chennai",
"postalCode": 600101,
"city": "Chennai",
"state": "Tamilnadu",
"country": "India"
},
"profiles": [
{
"github":"https://github.com/dineshkumar-stack"
}
]
},
"work": [
{
"company": "Edgar",
"position": "XBRL",
"startDate": "2019-06-24",
"endDate": "2023-02-28",
"summary": "I am the financial analyst in xbrl handle various task and gaining lots of experience",
},
],
"education": [
{
"institution": "Infant Jesus college",
"department": "MBA",
"studyType": "fulltime",
"batch start year": 2015,
"batch end year": 2019,
"gpa": 7.9,
}
],
"skills": [
{
"name": "javascript, xbrl, excel",
"level": "beginner",
}
],
"languages": [
{
"language": "Tamil,English",
}
],
"interests": [
{
"name": "Gamer, youtuber,",
}
]
}
console.log(myResume);