Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
Three words (regex) solution in Clear category for [old] Three Words by borisrozumnuk
"use strict";
function threeWords(data) {
return /\D+\s\D+\s\D+/.test(data);
}
July 21, 2016
Comments: