Skip to content

Instantly share code, notes, and snippets.

@rafael-cardoso
rafael-cardoso / gist:845de5eabebd2d9a28437bcc8312e292
Created June 26, 2018 04:39 — forked from willnss/gist:3246637
Gerador de CPF, NIT, CNPJ e CEI válidos
<html>
<head>
<title>Gerador de CPF, CNPJ e NIT Válidos</title>
<script language="javascript">
function gera_random(n) {
var ranNum = Math.round(Math.random()*n);
return ranNum;
}
function mod(dividendo,divisor) {