Create function with => operator - Javascript Function

Javascript examples for Function:Function Definition

Description

Create function with => operator

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 = () => {//from   w w  w .j av  a 2s .  c  om
    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