function increment() { count += 1; dispatchEvent(new CustomEvent( "count-incremented", { detail: { count } } )); }
Vue also isn't too far:
function increment() { count.value += 1 }
How in the world people are claiming "React is just Javascript" is beyond me.