JSFiddle - React, Tailwind, and code Playground

by Luiza CICONE

JavaScript

var str = {
  "weather": [{
    "id": 803,
    "main": "Clouds",
    "description": "broken clouds",
    "icon": "04d"
  }],
  "cod": 200
}

var obj = JSON.parse(str);
alert(obj.weather.description);