How to cache and receive User Object

Hello,

I'm currently trying to cache users by using
let test = client.users.cache


and i log it by:
        test.forEach((ID, USER) => {
          console.log(USER);
        });


How can i get the User object back instead of IDs?
Was this page helpful?