-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpractice2.js
26 lines (24 loc) · 1.06 KB
/
practice2.js
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
//Practice 2:
// const profile = {
// userName : "shradhakhapra",
// name : "Shradha Khapra",
// userInteraction : "Follow Message",
// userPosts : 195,
// userFollowers : 569000,
// userFollowing : 4,
// isFollow : false,
// ismessageAllowed : false,
// imageAvatar : true,
// userBio : "Apna college | Ex-Microsoft, DRDO | To educate someone is the highest privilege❤️"
// };
// console.log(profile["userBio"]); //The Output : Apna college | Ex-Microsoft, DRDO | To educate someone is the highest privilege❤️
//In console Output : Apna college | Ex-Microsoft, DRDO | To educate someone is the highest privilege❤️
// profile
// {userName: 'shradhakhapra', name: 'Shradha Khapra', userInteraction: 'Follow Message', userPosts: 195, userFollowers: 569000, …}
// profile["userBio"]
// 'Apna college | Ex-Microsoft, DRDO | To educate someone is the highest privilege❤️'
// profile['imageAvatar']
// true
// typeof profile['imageAvatar']
// 'boolean'
// console.log(typeof profile["userFollowers"]); //Output will be : number