`.properties.periods` would throw a `TypeError` if `properties` doesn't exist. For example: ```js co

.properties.periods would throw a TypeError if properties doesn't exist. For example:
const obj = {foo: 'bar'}
console.log(obj.foo) // bar
console.log(obj.bar) // undefined
console.log(obj.bar.baz) // TypeError
Was this page helpful?