Var = reassignable, global, local Let = reassignable, global, local, block Const = cant be reassigned, global, local, block if (true) { var b = 3; } console.log(b ...
Booleans may seem harmless, but using them can be fraught with peril. When you can’t avoid them, follow these five rules. Booleans are deceptively simple. They look harmless—just true or false, right?
Stumbled across this blog post while debugging a SPFx application: https://devblogs.microsoft.com/microsoft365dev/retirement-of-the-sharepoint-sendemail-api/ I wasn't ...
How to use the git .gitconfig file for a more efficient workflow Your email has been sent Git is the most widely-used version control system on the market. It’s ...
In earlier posts, I've discussed how to authorize a user declaratively both in ASP.NET Core and Blazor using the Authorize attribute, among other tools (and I've also referenced Eric Vogel's posts on ...