- 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);
- 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);
- 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;
- 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;
- 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);
console.log(arr2);
- Redirecting User
you can redirect the user to any specific URL using JavaScript.
const redirect = url => location.href = url
- 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));
console.log(isArray.(fruits)),