let arr = []; while (arr.length < 5) { let rand = Math.ceil(Math.random() * 10); arr.indexOf(rand) == -1 && arr.push(rand); } console.log(arr);
This Pen is owned by coderisimo on CodePen. It is a fork of this Pen.
See more by @coderisimo on CodePen
This Pen doesn't use any external CSS resources.
This Pen doesn't use any external JavaScript resources.