Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@ Good luck!
**HINT**: You might find `deleteFromObjectByKey` to be a bit hard to write non-destructively. Think about how we learned to use `Object.assign`. What happens if we do

``` javascript
var obj = { foo: 'bar' }
var obj = { fot: 'bar' }

var newObj = Object.assign({}, obj)

newObj // { foo: 'bar' }
newObj // { fot: 'bar' }

delete newObj.foo // true
delete newObj.fot // true

newObj // {}

obj // { foo: 'bar' }
obj // { fot: 'bar' }
```

Hmmmmm...


## Resources

Expand Down