count no of punctuation in string in js code example
Example: count no of punctuation in string in js
function countPunctuation(str) {
const punct = "!,\;\.-?";
let count = 0;
for(let i = 0; i < str.length; i++){
if(!punct.includes(str[i])){
continue;
};
count++;
};
return count;
}