Posts by Matheus Souza • 41 points
3 posts
- 
		1 votes2 answers57 viewsQ: Reference is making a variable change the value of anotherWhat reason the value returning in the example below is 2 and not null? const Parametros = { Produto: { valor: null, peso: null, }, } const params = Parametros; params.Produto.valor = 2;… 
- 
		1 votes1 answer104 viewsQ: Nodejs / Reactjs: Manipulating TokenI’d like your help. I have an API with Nodejs that performs user authentication (POST method), generating a Token (jwt) and returning the same: module.exports = { async authenticate(req, res) {… 
- 
		0 votes1 answer1424 viewsQ: Bootstrap - Overlay DivI have a doubt and I would like your help, I already researched a lot and did not find a solution. I’m trying to position a div over a div. I found some ways to do this on the internet, however, I…