Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ezhov-da/f9887af03dca16716b83c8e3a3360880 to your computer and use it in GitHub Desktop.
Save ezhov-da/f9887af03dca16716b83c8e3a3360880 to your computer and use it in GitHub Desktop.
js перебор свойств объекта
https://learn.javascript.ru/object-for-in
[code:]js[:code]for (key in obj) {
/* ... делать что-то с obj[key] ... */
}
[/code]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment