Sep 9, 2021 JavaScript
How to check if a value is a plain object in JavaScript

In this Article we will go through how to check if a value is a plain 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 isPlainObject = v => (!!v && typeof v === 'object' && (v.__proto__ === null || v.__proto__ === Object.prototype));

Sep 9, 2021 JavaScript
How to check if a value is a regular expression in JavaScript

In this Article we will go through how to check if a value is a regular expression 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 isRegExp = value => Object.prototype.toString.call(value) === '[object RegExp]';

Sep 9, 2021 JavaScript
How to check if a string is a hexadecimal number in JavaScript

In this Article we will go through how to check if a string is a hexadecimal number 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 isHexadecimal = str => /^[A-F0-9]+$/i.test(str);

Sep 9, 2021 JavaScript
How to check if a string is a mongodb objectid in JavaScript

In this Article we will go through how to check if a string is a mongodb objectid 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 isMongoId = str => str.length === 24 && /^[A-F0-9]+$/i.test(str);

Sep 9, 2021 JavaScript
How to check if a string is an octal number in JavaScript

In this Article we will go through how to check if a string is an octal number 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 isOctal = str => /^(0o)?[0-7]+$/i.test(str);

Sep 9, 2021 JavaScript
How to check if a string contains only letters in JavaScript

In this Article we will go through how to check if a string contains only letters 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 isAlpha = str => /^[A-Z]+$/i.test(str);

Sep 9, 2021 JavaScript
How to check if a string contains upper case characters in JavaScript

In this Article we will go through how to check if a string contains upper case characters 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 containsUpperCase = str => str !== str.toLowerCase();

Sep 9, 2021 JavaScript
How to check if a string contains whitespace in JavaScript

In this Article we will go through how to check if a string contains whitespace 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 containsWhitespace = str => str => /\s/.test(str);

Sep 9, 2021 JavaScript
How to check if a string is a hexadecimal color in JavaScript

In this Article we will go through how to check if a string is a hexadecimal color 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 isHexColor = color => /^#([0-9A-F]{3}|[0-9A-F]{4}|[0-9A-F]{6}|[0-9A-F]{8})$/i.test(color);

Sep 9, 2021 JavaScript
How to check if a number is positive in JavaScript

In this Article we will go through how to check if a number is positive 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 isPositive = number => Math.sign(number) === 1;