Javascript – Why is an empty string rendered in vue.js template considered truthy?
Why does an empty string in a vue template return as truthy? <div>{{ "" ?? "empty string is not truthy" }}</div> This will just display the empty string. I have a bunch of empty string fields which I can't check…