| 12
 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
 
 | let Abas = {full_name : 'Ahmad Basir',
 nick_name : 'Abas_',
 born_on   : 'Demak',
 birth_day : '1997-12-09',
 address   : 'Plaza Village' + [rt:'02',rw:'IV'],
 
 schools   : {
 univers : 'Universitas Dian Nuswantoro Semarang',
 sma     : 'SMA Negeri 1 Demak',
 smp     : 'SMP Negeri 1 Demak',
 sd      : 'SD Negeri 1 Ploso',
 }
 
 contact   : {
 email : function () {
 return "akhmadbasir5@gmail.com"
 },
 phone : function () {
 return 081334329102
 }
 }
 
 my-links  : {
 [{if:'facebook',
 then:'https://www.facebook.com/ahmad.basir.84512'}],
 
 [{if:'instagram',
 then:'https://www.instagram.com/ahmadbasir_'}],
 
 [{if:'twitter',
 then:'https://www.twitter.com/ahmadbasir__'}],
 
 [{if:'github',
 then:'https://www.github.com/ahmadbasir'}],
 
 [{if:'telegram',
 then:'https://www.t.me/ahmadbasir'}],
 
 [{if:'idline',
 then:'ahmadbasir_'}],
 }
 }
 
 |