Q
Size: a a a
Q
j
Q
Q
/* b, after, c */
// Promise.race([
// fetch(GOOGLE).then(function b() {}),
// fetch(GOOGLE).then(function c() {}),
// ]).then(function after() {});
/* c, after, b */
Promise.race([
fetch(NEWS).then(function b() {}),
fetch(GOOGLE).then(function c() {}),
]).then(function after() {});
Q
Q
Q
j
j
Q
const GOOGLE = 'https://www.google.com';. Ну просто до гугла ответ быстрее идет вот и все))
const NEWS = 'https://www.news.google.com';
а
а
C
N
A
Q
Q
A