You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
//? The Object.entries method returns [key, value] pairs.
//? it will return one array for each own property. Each of these arrays will contain two items. The first one is the property. The second one is the value.
//? using with array will return two items.One is the index of the item and 2nd is the item itself.