Given that my configuration object contains something like is_logged_in: false
When I read the configuration as this.config.get('is_logged_in')
Then I will get null as I didn't define the default value.
I could work around it by just setting the default as false, but better to check if the key exists.