How can I optimize the retrieval of deeply nested defaults?
At the moment, I'm employing this code snippet to access the bucket value of check_ab and assigning it a default value of 'A', but this approach is impacting readability:
settings: { experiments: { check_ab: { bucket: abvalue = 'A' } = {} } = {} } = {},
Is there a more efficient way to extract and establish secure defaults?