0

This is my response:

{ artist:
   { '#text': 'Sam Smith',
     mbid: '5a85c140-dcf9-4dd2-b2c8-aff0471549f3' },
  song: 'Stay with Me',
  from:
   { '#text': 'In the Lonely Hour',
     mbid: 'f43d20c0-2fa5-4bc2-9c42-c677e346e768' } }

Now I want to select to artist name, ( "#text" ) but how to select a property starting with #?

DazDylz
  • 1,028
  • 3
  • 13
  • 39

1 Answers1

2

You can use bracket notation, like this

console.log(data.artist['#text'])
Oleksandr T.
  • 76,493
  • 17
  • 173
  • 144