After performing an operation, the background will return an object {865946021169972: false}. How to get this Boolean value using js
dataname['865946021169972'] can give it a try
for (var key in obj) { console.log(obj[key]); } // or Object.keys(obj).forEach(function (key) { console.log(obj[key]); });
dataname['865946021169972'] can give it a try