I have a desire to create the following:
var users = {jhon: {name: 'jhon', points: 30}, markus:{name: 'Markus', points: 20}};
// I want it to return like this 1. Jhon with number of points: 30
// 2. Markus with number of points: 20
Can someone guide me on how to achieve this?