Skip to content

Instantly share code, notes, and snippets.

View camilova's full-sized avatar

Camilo Vargas A camilova

  • Chile
View GitHub Profile
@camilova
camilova / validarRUT.html
Last active May 10, 2021 17:24 — forked from gaulatti/validarRUT.html
HTML5 Chilean RUT Validator
function checkRut(rut) {
// Despejar Puntos
var valor = rut.replace(/\./g,'');
// Despejar Guión
valor = valor.replace('-','');
// Aislar Cuerpo y Dígito Verificador
cuerpo = valor.slice(0,-1);
dv = valor.slice(-1).toUpperCase();