Crafting Error Trails In JavaScript
Using Error.prototype.cause to create better errors
Aug 19, 20232 min read114

Search for a command to run...
Articles tagged with #ecmascript
Using Error.prototype.cause to create better errors

The new method at allows you to return an item in an array at the given index. You might be thinking I can already do this with brackets. The great thing about at is it can take negative numbers and count back from the end of the array. The way at wo...
