1
// Personal information
1
let name = 'Robin Malfait'
2
let location = 'Ghent, Belgium'
3
4
// Hobbies
5
let hobbies = [
6
'Programming',
7
'Eating food',
8
'More programming',
9
'Gym',
10
'Writing useless comments in code', Like the one above the variable name...
11
]
12
normal
main
./personal-info.js
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
Developer