let a = ["А", "Б", "В", "Г", "Ґ", "Д", "Е", "Є", "Ж", "З", "И", "І", "Ї", "Й", "К", "Л", "М", "Н", "О", "П", "Р", "С", "Т", "У", "Ф", "Х", "Ц", "Ч", "Ш", "Щ", "Ь", "Ю", "Я"];
for (const fl of a)
for (const sl of a) {
let url = "https://example.com/АА1234"+fl +sl;
let data = await fetch(url, {headers: {"Accept": "application/json"}}).then(r => r.json());
console.log(data)
}
var a = ["А", "Б", "В", "Г", "Ґ", "Д", "Е", "Є", "Ж", "З", "И", "І", "Ї", "Й", "К", "Л", "М", "Н", "О", "П", "Р", "С", "Т", "У", "Ф", "Х", "Ц", "Ч", "Ш", "Щ", "Ь", "Ю", "Я"];
a.forEach(function(p) {
let url = "https://example.com/АА1234"+p;
let data = await fetch(url, {headers: {"Accept": "application/json"}}).then(r => r.json()); console.log(data)
});
Переменная меняется каждые 1000 ms.