function WordCount(str) { return str.split(' ').length; }copy
function WordCount(str) { return str.split(' ').length; }