Skip to content

Instantly share code, notes, and snippets.

View aluksidadi's full-sized avatar

Alexander Luksidadi aluksidadi

  • Toronto, Ontario. Canada
View GitHub Profile
@aluksidadi
aluksidadi / immutable-js-using-es6-cheatsheet.md
Last active February 19, 2024 16:05
Immutable javascript using es6 cheatsheet

Object

Merge object / Object assign / Object extend

const obj1 = {a: 1, b: 2, c: 3};
const obj2 = {c: 4, d: 5};

const obj3 = {
  ...obj1,
  ...obj2,