Posts by Pedro Lucas • 98 points
3 posts
-
0
votes2
answers71
viewsA: Objects em javascript
What you’re trying to do is use an object as an index for the client objects, which would look like this. var clients = {}; var client = {id: 1, nome: 'Lucas', sala: 'B1'}; clients[client.id] =…
-
6
votes1
answer738
viewsA: Elasticseach, Redis, Relational Database or whatever?
The 3 are different things that can be understood as a pool of solutions that used together can solve architecture and scalability problems for applications that need a great performance (when they…
-
2
votes3
answers421
viewsA: To observe an error in the iframe element with "sandbox" attribute
There is no way we can access the values of the console and "observe" the warnings / errors issued by the internal javascript libs(V8, chakra, etc). I don’t know this functionality in any engine in…