Let's say I create a a in javascript:
var a = new Promise(function(success, error){ { sucess("Sucesso!"); })
My variable a gets the following properties:
Promise {[[PromiseStatus]]: "resolved", [[PromiseValue]]: "Sucesso!"}
But notice that they have double brackets surrounding them. I would like to know how do I get the value of properties that have this format.