Hey!
Recently I've been using something like this a lot:
if (process.env.NODE_ENV === "development") {
console.log('Thing:' thing);
}
And I've been doing that specifically to just log arrays and objects to make it easier for me to work with them since I enjoy it this way. I've been wondering if it has any downsides? I was also wondering if it hurts when such code is commited and pushed to production - it should be fine since it won't run anyways, right?
Or maybe there's a better way to do it and I am missing something? Appreciate all and any advice 
