Enable Javascript in your browser and then refresh this page, for a much enhanced experience.
One-liner solution in Clear category for [old] Common Words by Goodester
"use strict";
function commonWords(first, second) {
return first.split(',').filter(el => second.split(',').includes(el)).sort().join(',');
}
Aug. 6, 2019