Skip to content

Instantly share code, notes, and snippets.

@kswlee
Created March 8, 2014 16:57
Show Gist options
  • Save kswlee/9434942 to your computer and use it in GitHub Desktop.
Save kswlee/9434942 to your computer and use it in GitHub Desktop.
var foo = function (person) {
// stuff happens
// perhaps a breakpoint is added here
// or they attempt to log the object
console.log(person);
}
var person = {};
person[‘\t’] = ‘Nicholas’;
person[‘\b’] = ‘Male’;
person[‘\r’] = ‘Programmer’;
person[‘\f’] = ‘Lover’;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment