Javascript examples for Function:Function Definition
Create function with => operator
<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>