Skip to content

Instantly share code, notes, and snippets.

@gracefullight
Created December 22, 2016 11:32
Show Gist options
  • Select an option

  • Save gracefullight/138f4867e8a5feff24dda1749180d30a to your computer and use it in GitHub Desktop.

Select an option

Save gracefullight/138f4867e8a5feff24dda1749180d30a to your computer and use it in GitHub Desktop.
for (prop in obj) {
// 첫번째 방법
if ({}.hasOwnProperty.call(obj, prop)) {
}
// 두번째 방법
if (Object.prototype.hasOwnProperty.call(obj, prop)) {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment