What is new in JS?
The new ES2024 is approved
There is officially a new version of the language JavaScript. You may have seen most of these features already but they are now officially approved and standardized.
24/07/2024There is officially a new version of the language JavaScript. You may have seen most of these features already but they are now officially approved and standardized.
24/07/2024Assert if strings are valid before searching the database and avoid invalid encoding errors. Use the new .isWellFormed property to test the validity of an emoji or use v.test(emoji) for regex.
24/07/2024Resizable and growable (Shared)ArrayBuffers and ArrayBuffer transfer
24/07/2024New way of creating promises that might be useful when working with some non-promise based APIs.
24/07/2024Created a new object where each key represents each key property and its value is an array of all objects with that property.
24/07/2024Set objects now get all methods that other languages provide. Check out .intersection(), .union() and the docs.
24/07/2024Choosing colors is the first step of layouting.
The primary colors are the ones that carry the theme - either light or dark.
That color will consist for most of the layouting
Let's put it in action.
Choosing colors is the first step of layouting.
The primary colors are the ones that carry the theme - either light or dark.
That color will consist for most of the layouting
Let's put it in action now.