Javascript examples for Function:Function Variable
Use const to create function
<html lang="en"> <head></head> <body translate="no"> <script> const getRandom = () => Math.floor(Math.random() * 10) + 1; const ask = () => {// w ww .ja v a 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>