How to Configure the Touch Bar in Visual Studio Code in Under 5 Minutes
Get the most out of the Touch Bar in Visual Studio Code with two extensions and a little bit of configuration.
Oct 20, 20222 min read463

Search for a command to run...
Articles tagged with #programming
Get the most out of the Touch Bar in Visual Studio Code with two extensions and a little bit of configuration.

In JavaScript code, especially in older legacy code, you sometimes find the expression void 0. The void operator evaluates an expression and returns the primitive value undefined. void 0 evaluates 0, which does nothing, and then returns undefined. I...

The conventional wisdom is that you should have good test coverage before refactoring your code. Making mistakes during refactoring will introduce defects in the software if they are not caught during testing. Such regression defects can annoy users,...
