-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscript.js
More file actions
27 lines (25 loc) · 718 Bytes
/
Copy pathscript.js
File metadata and controls
27 lines (25 loc) · 718 Bytes
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
console.log("Welcome to my Portfolio!");
// User information
const user = {
name: "Abdullahi Ibraahim Omar",
profession: "Computer Science Student",
country: "Somalia",
city: "Mogadishu",
work: "Student",
dateOfBirth: "2003-01-01",
interests: [
"Web Development",
"Cybersecurity",
"Networking",
"Programming",
"Data Analysis"
]
};
// Display user information
console.log("Name:", user.name);
console.log("Profession:", user.profession);
console.log("Country:", user.country);
console.log("City:", user.city);
console.log("Work:", user.work);
console.log("Date of Birth:", user.dateOfBirth);
console.log("Interests:", user.interests.join(", "));