oliverdavies.uk/source/_daily_emails/2024-08-17.md

1,009 B

title date permalink tags cta snippet
Types add context 2024-08-17 daily/2024/08/17/types-add-context
software-development
clean-code
~ Types add helpful context to code, making it easier to read and understand.

In yesterday's email, I wrote about why readable variable names are important and why I use descriptive variable names in my code.

Given this pseudo-code:

function hande(req, res) {
}

With the short variable names, whilst you can guess, it's unclear what the variable names are.

However, in this code, we have the same variable names, but we also have additional type information:

function handle(Request req, Response res): void {
}

Even with the same variable names, I know what their types are and what the function returns, I have better completions and diagnostics in my editor and better static analysis of my code, making it easier to identify and fix potential bugs.