{/* 1. Direct cell reference */}
Direct cell reference: Count = {count}
{/* 2. Property access */}
Property access: User name = {user.name}
{/* 3. Inline expression */}
Inline expression: Count x 2 = {count * 2}
{/* 4. Array operations */}
Array operations: Item count = {items.length}
{/* 5. Nested property access */}
Nested property: Age = {user.age}
{/* 6. Array mapping (reactive) */}
Array mapping:
{items.map((item, i) => - {item.title}
)}