Skip to content

Instantly share code, notes, and snippets.

@hygull
Last active March 17, 2019 08:26
Show Gist options
  • Save hygull/df535d30cdd20afc2a6e17aaa292494b to your computer and use it in GitHub Desktop.
Save hygull/df535d30cdd20afc2a6e17aaa292494b to your computer and use it in GitHub Desktop.

Use the below statement as others suggested.

family._embedded['wp:featuredmedia']['0'].media_details.sizes["family-profile-thumb"].source_url

The below example clarifies when to use . (dot) & [] (brackets).

Creating an object

> o = {
... "fullname": "Rishikesh Agrawani",
... age: 26,
... langs: ["C", "Python", "JavaScript"],
... "web-lang": "JavaScript",
... "family-profile-thumb": "Yes"
... }
{ fullname: 'Rishikesh Agrawani',
  age: 26,
  langs: [ 'C', 'Python', 'JavaScript' ],
  'web-lang': 'JavaScript',
  'family-profile-thumb': 'Yes' }
> 

Access fullname (in 2 ways)

> o.fullname
'Rishikesh Agrawani'
> 
> o["fullname"]
'Rishikesh Agrawani'
> 

Access web-lang (only 1 way) otherwise you will get an error if you use . notation

> o["web-lang"]   // if there are spaces, hyphens (as we see in variable naming), don't use `.`(dot), use `[]` (brackets)
'JavaScript'
> 
> o.web-lang
Thrown:
ReferenceError: lang is not defined
> 
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment