Given a BigInt in JS, how do you compute its modulo?
10n % 3 // Uncaught TypeError: can't convert BigInt to number
edit: the difference between this question and the one linked as similar is that this question only pertains to BigInt https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/BigInt which is fairly recent.