Skip to content

Instantly share code, notes, and snippets.

@amowu
Created November 6, 2012 10:47
Show Gist options
  • Save amowu/4023995 to your computer and use it in GitHub Desktop.
Save amowu/4023995 to your computer and use it in GitHub Desktop.
Looping over properties of a Object (property enumeration)
for (var key:String in object)
{
trace(key+':'+ object[key]);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment