var z = a || 'baz' || c ? 'foo' : 'bar'; What is z if a and c are undefined?
#javascript
A static archive of Markus Tacker's tweets. Follow me on Mastodon: @[email protected].
var z = a || 'baz' || c ? 'foo' : 'bar'; What is z if a and c are undefined?
#javascript