Sep 9, 2021 JavaScript
How to check if an object is a promise in JavaScript

In this Article we will go through how to check if an object is a promise only using single line of code in JavaScript. This is a one-line JavaScript code snippet that uses one of the most popular ES6 features => Arrow Function.

Let's define this short function:

const isPromise = obj => !!obj && (typeof obj === 'object' || typeof obj === 'function') && typeof obj.then === 'function';

Sep 9, 2021 JavaScript
How to check if an object is an array in JavaScript

In this Article we will go through how to check if an object is an array only using single line of code in JavaScript. This is a one-line JavaScript code snippet that uses one of the most popular ES6 features => Arrow Function.

Let's define this short function:

const isArray = obj => Array.isArray(obj);

Sep 9, 2021 JavaScript
How to check if an object is empty in JavaScript

In this Article we will go through how to check if an object is empty only using single line of code in JavaScript. This is a one-line JavaScript code snippet that uses one of the most popular ES6 features => Arrow Function.

Let's define this short function:

const isEmpty = obj => Reflect.ownKeys(obj).length === 0 && obj.constructor === Object;

Sep 9, 2021 JavaScript
How to validate a gregorian date in JavaScript

In this Article we will go through how to validate a gregorian date only using single line of code in JavaScript. This is a one-line JavaScript code snippet that uses one of the most popular ES6 features => Arrow Function.

Let's define this short function:

const isValidDate = (m, d, y) => 0 <= m && m <= 11 && 0 < y && y < 32768 && 0 < d && d <= (new Date(y, m, 0)).getDate();

Sep 9, 2021 JavaScript
How to check if multiple objects are equal in JavaScript

In this Article we will go through how to check if multiple objects are equal only using single line of code in JavaScript. This is a one-line JavaScript code snippet that uses one of the most popular ES6 features => Arrow Function.

Let's define this short function:

const isEqual = (...objects) => objects.every(obj => JSON.stringify(obj) === JSON.stringify(objects[0]));

Sep 9, 2021 JavaScript
How to create an empty map that does not have properties in JavaScript

In this Article we will go through how to create an empty map that does not have properties only using single line of code in JavaScript.

Let's define this short function:

The following map has __proto__ property

Sep 9, 2021 JavaScript
How to create an object from the pairs of key and value in JavaScript

In this Article we will go through how to create an object from the pairs of key and value only using single line of code in JavaScript. This is a one-line JavaScript code snippet that uses one of the most popular ES6 features => Arrow Function.

Let's define this short function:

const toObj = arr => Object.fromEntries(arr)

Sep 9, 2021 JavaScript
How to extract values of a property from an array of objects in JavaScript

In this Article we will go through how to extract values of a property from an array of objects only using single line of code in JavaScript. This is a one-line JavaScript code snippet that uses one of the most popular ES6 features => Arrow Function.

Let's define this short function:

const pluck = (objs, property) => objs.map(obj => obj[property]);

Sep 9, 2021 JavaScript
How to get the value at given path of an object in JavaScript

In this Article we will go through how to get the value at given path of an object only using single line of code in JavaScript. This is a one-line JavaScript code snippet that uses one of the most popular ES6 features => Arrow Function.

Let's define this short function:

const getValue = (path, obj) => path.split('.').reduce((acc, c) => acc && acc[c], obj);

Sep 9, 2021 JavaScript
How to immutably rename object keys in JavaScript

In this Article we will go through how to immutably rename object keys only using single line of code in JavaScript. This is a one-line JavaScript code snippet that uses one of the most popular ES6 features => Arrow Function.

Let's define this short function:

const renameKeys = (keysMap, obj) => Object.keys(obj).reduce((acc, key) => ({ ...acc, ...{ [keysMap[key] || key]: obj[key] }}), {});