Hello, I'm Jean Paul Giraldo! A Software Developer by day, maker and lifelong learner by night (or very early mornings).
Go back to jeanpaulgiraldo.com
In 2021 JavaScript gave us some some nice new features. These are the ones I think I might be using the most
.replace()
and .replaceAll()
for Strings
With .replace()
it only replaces the first matching string
With .replaceAll()
it replaces every instance of the matching string
You can add private methods to your classes, which means that you can only access that method from within the class
Unfortunately, this new feature is only for methods. You can't restrict the accesibility of properties yet.
Promise.any();
This new method will wait until one of the promises is resolved
and return its value, if all promises are rejected, it will throw an AggregateError.
In the following sample, Promise.any()
will not return the value coming from promiseNow
, it will wait until it finds
a resolved promise, like in promiseFast
.
If all promises are rejected. An AggregateError
is returned.