I have the following object in typescript:
let parameters = { include: 'tags', limit: 20, published: true };
How can I loop through each parameter and get its key and value?
I need to do something with the key and value when value is not undefined.