navigator.userAgentData.getHighEntropyValues(['architecture', 'bitness', 'model', 'platformVersion', 'uaFullVersion', 'wow64']).then(function (e) {
for (var c = ["architecture", "bitness", "mobile", "model", "platform", "platformVersion", "uaFullVersion", "wow64"], i = [], o = 0; o < c["length"]; o++) {
i["push"](e[c[o]]);
}
var g = i["join"](",");
debugger
console.log(g);
})
140
{
"architecture": "x86",
"bitness": "64",
"brands": [
{
"brand": "Chromium",
"version": "140"
},
{
"brand": "Not=A?Brand",
"version": "24"
},
{
"brand": "Google Chrome",
"version": "140"
}
],
"mobile": false,
"model": "",
"platform": "Windows",
"platformVersion": "10.0.0",
"uaFullVersion": "140.0.7339.208",
"wow64": false
}