JSFiddle - React, Tailwind, and code Playground
by borisjavier
JavaScript
const numbers = [1728424355, 1728424685, 1728424746, 1728424819, 1728424901, 1726598673];
// Convertir los números a BigInt y crear el código fuente
const bigIntArray = numbers.map(num => `${num}n`).join(', ');
const code = `
const bigIntArray = [${bigIntArray}];
console.log(bigIntArray);
`;
console.log(code)