These are my longer essays. I’ve written 209 so far.
Only One Way Out of a Function
A programming style I try to practice could be described as: “there should be only one way out of a function.” Early returns can often cause more confusion than they’re worth. When possible, I avoid them in favor of a single return. ...