123456789101112131415161718192021222324 |
- <head>test inSorted</head>
- <body>
- <script>
- let inSorted = (...args) => {
- let prevVal = null;
- for (el of args) {
- if (prevVal != null && prevVal > el)
- return false;
- prevVal = el
- }
- return true;
- }
- let arr = [];
- while (a = prompt('Введите очередной элемент массива')) {
- arr.push(a);
- alert(arr);
- }
- console.log(inSorted(arr));
- </script>
- </body>
|