Math Method

PHOTO EMBED

Mon Jun 27 2022 19:52:11 GMT+0000 (Coordinated Universal Time)

Saved by @cruz #javascript

//Math object can not be changed
console.log(Math.PI);


function randomSelection(arr){
   let index = Math.floor(Math.random()*arr.length);
   return arr[index];
}

let happiness = ['Hope','Joy','Peace','Love','Kindness','Puppies','Kittens','Tortoise'];

for (i=0; i < 8; i++){
   console.log(randomSelection(happiness));
}
content_copyCOPY

https://education.launchcode.org/intro-to-professional-web-dev/chapters/objects-and-math/math-methods.html