'peer.id refuses to change
Here is my code, I use a live server (created with live-server in VS code)
var peer = new Peer(Math.floor(Math.random()*2**16).toString(),{
host:'127.0.0.1', secure:false, port:8080
});
console.log(peer.id);
setId = () => {
console.log("setId start");
peer.id = document.getElementById("id").value;
console.log(document.getElementById("id").value);
console.log(peer.id);
}
I then trigger setId()
with a button from my HTML after putting 45620162 in the "broId" input, the console then prints, in order :
27534
Live reload enabled
setID start
45620162
27534
Why does this happen ?
I first thought it was a scope issue (so i wrote setId
using an arrow). Then thought it was because peer was declared with const (so I declared it with var). I also tried to declare peer with let, it failed.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|