Sort array element with difference - Javascript Array

Javascript examples for Array:sort

Description

Sort array element with difference

Demo Code

ResultView the demo in separate window

<html lang="en">
   <head></head>
   <body translate="no"> 
      <script>
      const getRandom = () => Math.floor(Math.random() * 10) + 1;

const ask = () => {/*  www.  j a  va 2s .c o m*/
    const numbers = [getRandom(), getRandom()].sort((a, b) => b - a)
    console.log( numbers[0] - numbers[1] ? 'Right!' : 'Wrong!');
}

for (var i = 0; i < 6; i++) {
    ask();
}
    
      </script>  
   </body>
</html>

Related Tutorials