You can access the object stored in the variable by using the variable name.
const data = {'a': 1, 'b': 2};
console.log(data); //logs the object
You can access the properties of the object using dot or square bracket notation
//dot notation
console.log(data.a); // 1
//square bracket notation
console.log(data["b"]);// 2