Skip to content

Instantly share code, notes, and snippets.

@devdays
Created December 2, 2014 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save devdays/24bbcb05a5e80d16b7c2 to your computer and use it in GitHub Desktop.
Save devdays/24bbcb05a5e80d16b7c2 to your computer and use it in GitHub Desktop.
Object Javascript - Initialize object by setting properties
var laundryTask = new Object();
laundryTask.description= "Get shirts";
laundryTask.hoursToComplete = 1;
laundryTask.urgency = "low";
laundryTask.done = false;
console.log(JSON.stringify(laundryTask));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment