5 cool JavaScript features that most developers don’t know about

You can use JavaScript to do the same thing in different ways. With the release of each new ECMAScript specification, new methods and operators are added to make the code shorter and more readable.

1. Object.entries

Most developers use th…


This content originally appeared on DEV Community and was authored by Matvey Romanov

You can use JavaScript to do the same thing in different ways. With the release of each new ECMAScript specification, new methods and operators are added to make the code shorter and more readable.

Code

1. Object.entries

Most developers use the Object.keys method to iterate through an object. This method returns only an array of object keys, not values. You can use Object.entries to get both the key and the value.

const person = {
  name: 'Nick',
  age: 27
};
Object.keys(person); // ['name', 'age']
Object.entries(data); // [['name', 'Nick'], ['age', 27]]

To iterate over an object, we can do the following::

Object.keys(person).forEach((key) => {
  console.log(`${key} is ${person[key]}`);
});
// using records to get the key and value
Object.entries(person).forEach(([key, value]) => {
  console.log(`${key} is ${value}`);
});
// expected result:
// name is Nick
// age is 27

Both approaches described above return the same result, but Object.entries makes it easy to get a key-value pair.

2. The replaceAll method

In JavaScript, to replace all occurrences of a string with another string, we need to use a regular expression like the following:

const str = 'Red-Green-Blue';

// replaces only the first entry

str.replace('-', ' '); // Red Green-Blue

// use a regular expression to replace all entries
str.replace(/\-/g, ' '); // Red Green Blue

But in ES12, a new replaceAll method was added to String.prototype, which replaces all occurrences of the string with another string value:

str.replaceAll('-', ' '); // Red Green Blue

3. Numeric separator

You can use the underscore "_" as a numeric separator to simplify counting the number of zeros in a number.

// less readable
const billion = 1000000000;
// more readable
const readableBillion = 1000_000_000;
console.log(readableBillion) // returns 1000000000

The separator can also be used with BigInt numbers, as in the following example:

const trillion = 1000_000_000_000n;
console.log(trillion); // 1000000000000

This makes the number more readable.

4. document.designMode

Linked to front-end JavaScript, design Mode lets you edit any content on the page. Just open the browser console and enter the following:

document.designMode = 'on';

This is useful for designers, as they don't need to change something in the code every time to match the changes on the screen.

5. Logical assignment operator

Logical assignment operators are a combination of the logical operators &&, ||, ?? and the assignment operator =.

const a = 1;
const b = 2;
a &&= b;
console.log(a); // returns 2
// the above statement is equivalent to a && (a = b);
// OR another way
if (a) {
  a = b
}

Here it checks whether the value of a matches true, and if so, we update its value. The same can be done with the logical OR // operator.

const a = null;
const b = 3;
a ||= b;
console.log(a); // returns 3
// the above statement is equivalent to
a || (a = b);

And also with the help of an operator ??:

const a = null;
const b = 3;
a ??= b;
console.log(a); // returns 3
// the above statement is equivalent to
if (a === null || a === undefined) {
  a = b;
}

The operator ?? checks only for null or undefined values.

Note that logical assignment operators have been added since ES 12/ES 2021.

Conclusion

These tricks and features can speed up the developer's work, and their use is not only necessary, but also useful. Continue to explore the hidden features of the language, learn all sorts of tricks and improve your skills.


This content originally appeared on DEV Community and was authored by Matvey Romanov


Print Share Comment Cite Upload Translate Updates
APA

Matvey Romanov | Sciencx (2022-01-04T08:55:10+00:00) 5 cool JavaScript features that most developers don’t know about. Retrieved from https://www.scien.cx/2022/01/04/5-cool-javascript-features-that-most-developers-dont-know-about/

MLA
" » 5 cool JavaScript features that most developers don’t know about." Matvey Romanov | Sciencx - Tuesday January 4, 2022, https://www.scien.cx/2022/01/04/5-cool-javascript-features-that-most-developers-dont-know-about/
HARVARD
Matvey Romanov | Sciencx Tuesday January 4, 2022 » 5 cool JavaScript features that most developers don’t know about., viewed ,<https://www.scien.cx/2022/01/04/5-cool-javascript-features-that-most-developers-dont-know-about/>
VANCOUVER
Matvey Romanov | Sciencx - » 5 cool JavaScript features that most developers don’t know about. [Internet]. [Accessed ]. Available from: https://www.scien.cx/2022/01/04/5-cool-javascript-features-that-most-developers-dont-know-about/
CHICAGO
" » 5 cool JavaScript features that most developers don’t know about." Matvey Romanov | Sciencx - Accessed . https://www.scien.cx/2022/01/04/5-cool-javascript-features-that-most-developers-dont-know-about/
IEEE
" » 5 cool JavaScript features that most developers don’t know about." Matvey Romanov | Sciencx [Online]. Available: https://www.scien.cx/2022/01/04/5-cool-javascript-features-that-most-developers-dont-know-about/. [Accessed: ]
rf:citation
» 5 cool JavaScript features that most developers don’t know about | Matvey Romanov | Sciencx | https://www.scien.cx/2022/01/04/5-cool-javascript-features-that-most-developers-dont-know-about/ |

Please log in to upload a file.




There are no updates yet.
Click the Upload button above to add an update.

You must be logged in to translate posts. Please log in or register.