In the Mozilla Developers Guide on how to write a WebSocket Server in c# I found
this two lines of code in the js client part.
https://developer.mozilla.org/en-US/docs/Web/API/WebSockets_API/Writing_WebSocket_server
var text = textarea.value;
text && doSend(text);
Can somebody tell me, why they would put the var "text" in front of && before the function call?