Skip to content

Instantly share code, notes, and snippets.

View Oddeone's full-sized avatar

German Oddeone

  • Alfa-Bank
  • 23:01 (UTC +03:00)
View GitHub Profile
@Oddeone
Oddeone / Frontend.md
Created February 5, 2026 09:27
Front Interview Clean Version
  1. Что выведется в консоль:
  let a = { a: 1 };
  let b = a;
  let c = [a];
  let d = [b];
  console.log(c == d);
  d[0].b = 2;
  console.log(c[0]);