I'm trying to use the fingerprintjs2 javascript library, to get browser fingerprints.
The following code works ok:
new Fingerprint2().get(function (result) {
var output = result;
document.write(output);
});
However, I would like to set a variable outside of this block, to be used later e.g.:
var output;
new Fingerprint2().get(function (result) {
output = result;
});
document.write(output);
but in this case I get the output:
undefined
I'm guessing this is related to scope, so is there any way to set the variable in the outer scope, or do I need to put all following code inside this function call?
I've read other questions about getting the value of nested functions, but none seem to work in this case.
this will not work because you are printing the output before the asynchronous get has returned.
try this: