Calling number methods like toFixed() on undefined values.
// Buggy Code
const product = await fetchProduct(id);
const displayPrice = product.price.toFixed(2);
// TypeError: Cannot read properties of undefined (reading 'toFixed')
// API returned product without price field
// { name: 'Widget', description: '...' }