Learn Basic JavaScript by Building a Role Playing Game - Step 153

Tell us what’s happening:

i have already solve the code but i want to know what means “Math.random () > .2”

Your code so far

<!-- file: index.html -->

/* file: styles.css */

/* file: script.js */
// User Editable Region

function isMonsterHit() {
  return Math.random() > .2;
}

// User Editable Region

Your browser information:

User Agent is: Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/127.0.0.0 Safari/537.36

Challenge Information:

Learn Basic JavaScript by Building a Role Playing Game - Step 153

Math.random returns a number between 0 and 1 (excluding 1).
So this comparison is checking if the random number is greater than 0.2

1 Like

i understand now thank you

1 Like