How to generate a random hex color in JavaScript

In this Article we will go through how to generate a random hex 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 randomColor = () => `#${Math.random().toString(16).slice(2, 8).padEnd(6, '0')}`;

#Or

const randomColor = () => `#${(~~(Math.random()*(1<<24))).toString(16)}`;