Some Interesting JavaScript Tricks You Can Try Today

Some Interesting JavaScript Tricks You Can Try Today

Just like every other programming language, JavaScript has dozens of tricks to accomplish - both easy and difficult tasks. Some tricks are widely known while others are enough to blow your mind.

Let's have a look at seven little JavaScript tricks you can start using today!

Some Interesting JavaScript Tricks You Can Try Today

1. Get Unique Values of an Array

Getting an array of unique values is probably easier than you think:

var j = [...new Set([1, 2, 3, 3])]  
>> [1, 2, 3]

I love the mixture of rest expression and Set!

2. Array and Boolean

Ever need to filter falsy values (0, undefined, null, false, etc.) out of an array? You may not have known this trick:

myArray
    .map(item => {
        // ...
    })
    // Get rid of bad values
    .filter(Boolean);

Just pass Boolean and all those falsy values go away!

3. Create Empty Objects

Sure you can create an object that seems empty with {}, but that object still has a __proto__ and the usual hasOwnProperty and other object methods. There is a way, however, to create a pure "dictionary" object:

let dict = Object.create(null);  

// dict.__proto__ === "undefined"  
// No object properties exist until you add them.

There are absolutely no keys or methods on that object that you don't put there!

4. Merge Objects

The need to merge multiple objects in JavaScript has been around forever, especially as we started creating classes and widgets with options:

const person = { name: 'Kefas Kingsley', gender: 'Male' };  
const tools = { computer: 'Windows', editor: 'Sublime Text' };  
const attributes = { handsomeness: 'Average', hair: 'Black', eyes: 'Black' };  

const summary = {...person, ...tools, ...attributes};  
/*  
Object {  
  "computer": "Windows",  
  "editor": "Sublime Text",  
  "eyes": "Black",  
  "gender": "Male",  
  "hair": "Black",  
  "handsomeness": "Average",  
  "name": "Kefas Kingsley",  
}  
*/

Those three dots made the task so much easier!

5. Require Function Parameters

Being able to set default values for function arguments was an awesome addition to [removed]

const isRequired = () => { throw new Error('param is required'); };  

const hello = (name = isRequired()) => {  
console.log(`hello ${name}`) };  

// This will throw an error because no name is provided.  
hello();  

// This will also throw an error.  
hello(undefined);  

// These are good!  
hello(null);  
hello('Kingsley');

That's some next level validation and JavaScript usage!

6. Destructuring Aliases

Destructuring is a very welcomed addition to JavaScript but sometimes we'd prefer to refer to those properties by another name, so we can take advantage of aliases:

const obj = { x: 1 };  

// Grabs obj.x as { x }  
const { x } = obj;  

// Grabs obj.x as { otherName }  
const { x: otherName } = obj;

Useful for avoiding naming conflicts with existing variables!

7. Get Query String Parameters

For years we wrote gross regular expressions to get query string values but those days are gone -- enter the amazing URLSearchParams API:

// Assuming "?post=1234&action=edit"  

var urlParams = new URLSearchParams[removed].search);  

console.log(urlParams.has('post')); // true.  
console.log(urlParams.get('action')); // "edit"  
console.log(urlParams.getAll('action')); // ["edit"]  
console.log(urlParams.toString()); // "?post=1234&action=edit"  
console.log(urlParams.append('active', '1')); // "?post=1234&action=edit&active=1"

Much easier than we used to fight with!

JavaScript has changed so much over the years but my favorite part of JavaScript these days is the velocity in language improvements we're seeing. Despite the changing dynamic of JavaScript, we still need to employ a few decent tricks; keep these tricks in your toolbox for when you need them!

Now, let me hear from you.
What is/are your favorite JavaScript trick(s)?