Skip to content

Instantly share code, notes, and snippets.

@lastlegion
Last active August 29, 2015 14:10
Show Gist options
  • Save lastlegion/d29bcd2850f336799696 to your computer and use it in GitHub Desktop.
Save lastlegion/d29bcd2850f336799696 to your computer and use it in GitHub Desktop.
sentimentscore
function(text){
var score = 0;
var words = text.split(" ");
for(var i in words){
word = words[i];
if(word in this.wordList){
score+= this.wordList[word];
}
}
return score/words.length;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment