Foundations
Choose the Keyword
Choose the Keyword
A subscription dashboard has a plan name that should stay fixed and a seat count that changes when another teammate joins.
Your task: Store the plan name "Starter" in planName. Store 2 in seatsUsed, update it to 3, then log the plan name and final seat count.
Prerequisites
- variables
Tests
- planName keeps the selected plan
- seatsUsed reflects the updated count
- the final count is logged
- the fixed value uses const and the changing value uses let