ExceptionsManager.js:179 TypeError: Cannot read property 'create' of undefined code example

Example 1: core.js:6228 error typeerror: cannot read property 'height' of undefined

core.js:6228 ERROR TypeError: Cannot read property 'height' of undefined

Example 2: core.js:6228 ERROR TypeError: Cannot read property 'image' of undefined

<tr ngFor="let item of typeDons">
  <td>{{ item?.name }}</td>               <!-- notice the question mark -->
  <td>{{ item?.description }}</td>
  <td>
    <button type="button" >Edit</button>
    <button type="button" >Delete</button>
  </td>
</tr>