Published onOctober 9, 2023Differences Between `require` and `import`JavaScriptnode.jsrequire suits compatibility, import is best for modern setups.
Published onOctober 8, 2023Understanding BabelJavaScriptnode.jsA JavaScript transpiler for modern syntax
Published onJune 27, 2023Dive into `string.prototype.replaceAll`JavaScriptReplace all matches, use the `g` flag with regex, may not be supported in older browsers.
Published onMarch 26, 2023What is the difference between using {} and not using {} in import statements?reactjavascriptImport the default export without {}, and use {} for named exports.
Published onSeptember 1, 2022What is the nullish coalescing operator?JavaScriptnull/undefined handling operator