mirror of
https://github.com/rowyio/rowy.git
synced 2025-12-16 11:47:50 +01:00
5 lines
188 B
JavaScript
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);
|