Posts by Cris • 11 points
3 posts
-
0
votes1
answer60
viewsQ: Render Html
I am consuming a json where I have a key with the value of an html tag: import React, { useState, useEffect} from "react"; export const CardHome = () => { const [recebeDados, setRecebeDados] =…
-
0
votes1
answer375
viewsQ: Join objects with equal values with Javascript
I have an array of objects. I want to join objects that have similar values using Javascript. const teste = [ { Hora: '23:49:08.277', CodigoDoPiloto: '038', Piloto: 'F.MASSA', Volta: '1\t\t',…
-
-1
votes1
answer528
viewsQ: How to locally save data returned from an API to a JSON file?
I’m making a requisition HTTP to receive data, after receiving it, I need to store it locally in a file JSON. How can I create and transfer this data to the archive .json? Requisition HTTP : const…