Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
First solution in Clear category for [old] Three Words by capback250
"use strict";
function threeWords(data, counter = 0) {
let arrData = data.split(' ');
for (let i = 0; i < arrData.length; i++) {
if (/\D/.test(arrData[i]))
if (counter == 2) return true;
else counter++;
else counter = 0;
}
return false;
}
April 15, 2017