Skip to content

Instantly share code, notes, and snippets.

View Setup007's full-sized avatar

Setup Setup007

View GitHub Profile

update object

var state = {
    id: 1,
    points: 100,
    name: "Goran"
};

var newState = {
@gorangajic
gorangajic / es6-spread-immutable-cheatsheet.md
Last active April 11, 2024 08:32
es6 spread immutable cheatsheet

update object

var state = {
    id: 1,
    points: 100,
    name: "Goran"
};

var newState = {