Answers for "how to get random item from array in typescript"

2

get random element from array typescript

const randomElement = array[Math.floor(Math.random() * array.length)];
Posted by: Guest on April-07-2020

Code answers related to "how to get random item from array in typescript"

Code answers related to "Javascript"

Browse Popular Code Answers by Language