1
// Personal information
2
let name = 'Federico Tensi'
3
let profession = 'Software Engineer'
4
let location = 'Rome, Italy'
5
6
// Hobbies
7
let hobbies = [
8
'Coding', 'Eating food', 'Cars', 'More programming', 'Gym',
9
'Writing not so useful comments',This is a good joke, look above the variable name...
10
];
11
normal
main
./personal-info.js
Developer