Skip to content

Instantly share code, notes, and snippets.

@rtivital
Created December 4, 2015 09:22
Show Gist options
  • Select an option

  • Save rtivital/5a84de74efa8a94be00a to your computer and use it in GitHub Desktop.

Select an option

Save rtivital/5a84de74efa8a94be00a to your computer and use it in GitHub Desktop.
// Самый быстрый способ клонировать объект - пропустить его через
// функции JSON.parse() и JSON.stringify() - таким образом будут
// клонированы все свойства объекта на любой глубине вложенности
var clonedObject = (JSON.parse(JSON.stringify(originalObject)));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment