Skip to content

Instantly share code, notes, and snippets.

@nialdarbey
Last active August 31, 2015 22:15
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 nialdarbey/00c60537bda68709fa53 to your computer and use it in GitHub Desktop.
Save nialdarbey/00c60537bda68709fa53 to your computer and use it in GitHub Desktop.
Simple Type Literal Array Literal Object Literal
'Hello world'
[3,6,9]
{
    company: 'MuleSoft',
    approach: 'API-led Connectivity',
    areas: 'SAAS, SOA, APIs'
}
2015
['Two', 'words']
{
    company: 'MuleSoft',
    approach: 'API-led Connectivity',
    address: {
        city: 'San Francisco',
        state: 'CA'
    },
    offices: ['Buenos Aires', 'Sydney', 
        'London', 'New York', 'etc.'],
    area: 'SAAS',
    area: 'SOA',
    area: 'APIs'
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment