How to generate a random string with given length in JavaScript

In this Article we will go through how to generate a random string with given length 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 generateString = length => Array(length).fill('').map((v) => Math.random().toString(36).charAt(2)).join('');