Hacker News new | ask | show | jobs
by philjohn 3275 days ago
Another small point, you don't need that starts with function, just use strpos === 0.
1 comments

It's actually good practice to wrap a bit of code like that in a function with a name, as long as it isn't in some kind of extremely frequently executed inner loop.

'starts_with' is descriptive and language agnostic where '=== 0' is neither.