Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!DOCTYPE html>
<html>
<head>
<meta name="description" content="[add your bin description]" />
<meta charset=utf-8 />
<title>JS Bin</title>
</head>
<body>
  <canvas width=500 height=500 />
</body>
</html>
 
// http://stackoverflow.com/questions/25602372/counting-unique-words-in-strings/25602535#25602535
var seen = {};
count(["a", "b"], seen);
count(["a", "c"], seen);
function count(words, accumulator) {
    for (var i = 0; i < words.length; ++i) {
        if(!accumulator.hasOwnProperty(words[i])) {
          accumulator[words[i]] = 1;
        } else {
          ++accumulator[words[i]];
        }
    }
}
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
phdphilpro
0viewers