Skip to content

Instantly share code, notes, and snippets.

@nathanmpark
Created October 2, 2015 02:29
Show Gist options
  • Save nathanmpark/23d12ff581982d4fe234 to your computer and use it in GitHub Desktop.
Save nathanmpark/23d12ff581982d4fe234 to your computer and use it in GitHub Desktop.
// Example JavaScript Object
var skateboarder = {
name: "Rodney Mullen",
board: "Almost Deck",
wheels: "Spitfire",
trucks: "Independent"
};
// The object must be initialized with the keyword "var" and contain the properties within the curley brackets.
// This example shows the object "skatboarder".
// The properties are name, board, wheels, and trucks.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment