JSFiddle - React, Tailwind, and code Playground

by jakie8

JavaScript

var text = ' Hello : Doug "My : name is::Jacob": "more : quotes" ';

var nb = text.split('"').filter(function(_,i){return i%2}).join('').split(':').length - 1;

document.write(nb);