-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbiodata.js
More file actions
51 lines (50 loc) · 1.12 KB
/
biodata.js
File metadata and controls
51 lines (50 loc) · 1.12 KB
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
const biodata = {
name : 'Jumelisah',
age : 24,
hobbies : ['watching movies', 'reading', 'traveling'],
IsMaried : false,
schoolList : [
{
schoolName : 'SDN 2 SUKAMAJU',
yearIn : 2003,
yearOut : 2009,
major : ''
},
{
schoolName : 'SMPN 6 BANDAR LAMPUNG',
yearIn : 2009,
yearOut : 2012,
major : ''
},
{
schoolName : 'SMAN 8 BANDAR LAMPUNG',
yearIn : 2012,
yearOut : 2015,
major : 'IPA'
}
],
skills : [
{
skillName : 'HTML & CSS',
level : 'beginner'
},
{
skillName : 'Javascript',
level : 'beginner'
},
{
skillName : 'Microsoft Office',
level : 'advanced'
},
{
skillName : 'Microsoft Excel',
level : 'advanced'
},
{
skillName : 'Microsoft PowerPoint',
level : 'advanced'
}
],
interestInCoding : true
}
console.log(biodata)