Par exemple, une API HTTP REST m'a renvoyé un JSON, mais bien sûr, c'est une chaîne en ce moment. Comment puis-je le transformer en JSON?
Vous devez utiliser cette fonction.
JSON.parse(yourJsonString);
Et il retournera l'objet/le tableau contenu dans la chaîne.
utiliser la fonction JSON>
JSON.parse(theString)