compter n ° de ponctuation en chaîne en 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;
}
Real Ray