Intermediate Writing #role-specific #professional #all-roles

Role-Specific Writing

9 exercises — one writing challenge for each engineering role: Frontend, Backend, Mobile, DevOps/SRE, QA, Data Science, Technical Writing, Security, and Product Management.

0 / 9 completed
Writing for your role
  • Frontend / Backend: Code comments explain why, not what. API docs show examples.
  • Mobile: App Store notes are user-facing — feature + benefit + where to find it
  • DevOps/SRE: Runbooks need exact commands + verification steps + escalation paths
  • QA: Test cases need preconditions, exact inputs, and measurable expected results
  • Data / Security / PM: Translate technical findings into actionable business language for mixed audiences
1 / 9

Frontend — JSDoc comment

A React component accepts props for a form field. Which JSDoc comment is written most effectively?

// [COMMENT HERE]
function TextField({ label, value, onChange, error, disabled = false }) {
  ...
}