Skip to content

Instantly share code, notes, and snippets.

View dave-martinez's full-sized avatar
🗺️
Pluming Spatial Data

Dave Martinez dave-martinez

🗺️
Pluming Spatial Data
View GitHub Profile
function validateContact() {
// Baguhin mo lang onti to
var contact = document.getElementById('contact').value;
var contactLength = contact.length;
// Dagdag mo tong variable na to, regex tester
var contactIsDigit = /^\d+$/.test(contact);
// Tapos may last na condition
if((contactLength == 7 || contactLength == 11) && contactIsDigit) {