let GetRandomInt = function(min, max) {
min = Math.ceil(min);
max = Math.floor(max)
return Math.floor(Math.random() * (max - min)) + min;
}
console.log(Math.floor(Math.random() * 10) + 1) // случайное число от 1 до 10
var temp;
function getOnline(){
const sql = `SELECT * FROM Online`;
connection.query(sql, function(err, results) {
if(err) console.log(err);
for(let i=0; i < results.length; i++){
temp=results[i].online;
}
console.log(temp) // здесь temp = results[i].online
})
}
console.log(temp) // undefined, здесь temp не равняется ничему
getOnline();
var ListData = [];
for (let i = 0; i < 101; i++) {
ListData.push({id: `list-${i}`})
}