📜  如何检查一个句子中有多少个字符串 javascript 代码示例
📅  最后修改于: 2022-03-11 15:01:35.411000             🧑  作者: Mango
代码示例1
function WordCounter (str) {
var words = str.split(" ").length;
return words;
}
// this should work!