Files
rowy/test.js

5 lines
188 B
JavaScript

const values = [true, false, undefined, null, "string"];
const randIndx = Math.floor(Math.random() * 6);
values.push(Math.random() * 100);
console.log(values, values[randIndx], randIndx);