How to generate a random ip address in JavaScript

In this Article we will go through how to generate a random ip address 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 randomIp = () => Array(4).fill(0).map((_, i) => Math.floor(Math.random() * 255) + (i === 0 ? 1 : 0)).join('.');

#Example

randomIp();     // 175.89.174.131