Posts by gabcampbellmaia • 13 points
3 posts
-
0
votes1
answer33
viewsQ: Is it possible to send JSX tags from Nodejs(backend) to Reactjs?
I need to send a data to the frontend, but I need it to be already with determinate tag around it, for example... given backend: Name: Gabriel I need you to get to the front this way:…
-
0
votes1
answer46
viewsQ: How do I merge into two array, but toggle them. (python)
array0 = [1,2,3] array1 = ['a','b','c'] having the two arrays above, as return this value that is below? //[1,'a',2,'b',3,'c']
-
0
votes1
answer49
viewsQ: I want to know how to remove hyphens (-), and (|) from the table below to return a json from the table
let arquivo = fs.readFileSync('meu_txt.txt','utf8') let cells_arquivo = arquivo.split('\r\n').map(function(el) { return el.split(/[|]/) }) let headings_arquivo = cells_arquivo.shift() let…