7 Killer JavaScript One-Liners that you must know

7 Killer JavaScript One-Liners that you must know

  1. Generate Random String if you will ever need a temporary unique id for something. this one-liner will generate a random string for you
const randomString = Math.random().toString(36).slice(2);
console.log(randomString); //output- r0zf1xfqcr (the string will be random )
  1. Extract Domain Name From An Email you can use the substring() method to extract the domain name of the email.
let email = 'xyz@gmail.com';
le getDomain = email.substring(email.indexOf('@') + 1);

console.log(getDomain); // output - gmail.com
  1. Detect Dark Mode with this one-liner, you can check if the user is using dark mode ( and then you can update some functionality according to dark mode)
const isDarkMode = window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').match;
  1. Check if An Element is Focused to detect if the element has the focus in JavaScript, you can use the read-only property activeElement of the Document object.
const elem = document.querySelector(' .text-input');

const isFocus = elem == document.activeElemnt;

/* isFocus will be true if elem will have focus, and isFocus will be false if elem will not have focus */
  1. Check If An Array Is Empty this one-liner will let you know if an array is empty or not.
let arr1 = [];
let arr2 = [2, 4, 6, 8, 10];

const arr1IsEmpty = !(Array.isArray(arr1) && arr1.length >0);
const arr2IsEmpty = !(Array.isArray(arr2) && arr2.length >0);

console.log(arr1); //output - true
console.log(arr2); // output - false
  1. Redirecting User you can redirect the user to any specific URL using JavaScript.
const redirect = url => location.href = url

/* call redirect (url) whenever you want to redirect the user to a specific url */
  1. Check If A Variable Is An Array You can check if any Variable is an Array or not using the Array.isArray() method.
let fruit = 'apple';
let fruits = ["apple", "banana", "mango", "orange", "grapes"];

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

console.log(isArray.(fruit)); //output - false
console.log(isArray.(fruits)), //output- true

Did you find this article valuable?

Support Kamran Ahmad by becoming a sponsor. Any amount is appreciated!