Pro tip: never, ever, use Mocha's `skip()` or `only()` functions to pick which tests to run
The `-g` flag lets you search tests by RegExp, use that instead
Learn more about Mocha 👉 masteringjs.io/tutorials/moc…#JavaScript#CodeNewbie
Pro tip: WeakMaps are a great alternative to adding random properties or symbols to objects.
Map from object to value, without adding a property that messes with debug output
#JavaScript#CodeNewbie
Want to be able to `require()` or `import` HTML files in Webpack?
Add a rule of type 'asset/source' to `.html` files. No need for html-loader.
Learn more about running Webpack from Node.js 👉 masteringjs.io/tutorials/web…#JavaScript#CodeNewbie
Pro tip for developers:
1) Start a blog
2) Write about the problems you've solved
3) Become known as an "expert" bc you helped people solve problems faster
#JavaScript#CodeNewbie