Estoy usando FingerprintJS para obtener la ID de un usuario y, en este momento, solo puedo mostrar la ID en la consola. ¿Cómo puedo agregar el resultado a una tabla?
Aquí está mi código:
// Initialize the agent at application startup. const fpPromise = import('https://fpcdn.io/v3/Xhk2W83F3F8jStNRz99k') .then(FingerprintJS => FingerprintJS.load()) // Get the visitor identifier when you need it. fpPromise .then(fp => fp.get()) .then( Result => { // This is the visitor identifier: const visitorId = Result.visitorId console.log(visitorId) })