I’m trying to build JavaScript code that reads one string (say a sentence of English text), then outputs another string of (comma-separated) words that were “uncommon”. Something like:
var sentence="The dog ran to the other side of the field.";
var common_words="the, it is, we all, a, an, by, to, you, me, he, she, they, we, how, it, i, are, to, for, of";
–Some JavaScript code–
var uncommon_words="dog, ran, other, side, field";
How can I do this?
Here you go:
Live demo: http://jsfiddle.net/simevidas/knXkS/