Skip to content

Instantly share code, notes, and snippets.

@erikhazzard
Created July 15, 2015 04:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save erikhazzard/4ce255b0f53e2b9dc6d5 to your computer and use it in GitHub Desktop.
Save erikhazzard/4ce255b0f53e2b9dc6d5 to your computer and use it in GitHub Desktop.
set deep
var _ = require('lodash');
var a = {};
_.set(a, 'a.b.c', 5);
console.log(a);
// output = { a: { b: { c: 5 } } }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment