const array = [];
for (let i = 0; i < 10; i++) {array.push(Math.floor(Math.random() * 1001));}
const lastElement = array[array.length - 1];
console.log(Последний элемент массива: ${lastElement});
console.log("Номера элементов массива, которые равны последнему элементу:");
array.forEach((element, index) => {if (element === lastElement) {console.log(index);}});
const array = [];
for (let i = 0; i < 10; i++) {
array.push(Math.floor(Math.random() * 1001));
}
const lastElement = array[array.length - 1];
console.log(Последний элемент массива: ${lastElement});
console.log("Номера элементов массива, которые равны последнему элементу:");
array.forEach((element, index) => {
if (element === lastElement) {
console.log(index);
}
});