<div dir="ltr"><div dir="ltr">On Sat, Dec 22, 2018 at 10:38 AM warleyalex via Pas2js <<a href="mailto:pas2js@lists.freepascal.org">pas2js@lists.freepascal.org</a>> wrote:<br></div><div class="gmail_quote"><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex">So for example let’s consider the nullable float value x in the following<br>
example;<br>
If it is specified it will print its value, otherwise it will print "‘1".<br>
<br>
---// the special operator ?? //----------------------<br>
var<br>
  x: JSValue;<br>
begin<br>
  console.log(x ?? 1);<br>
end;<br>
------------------------------<br>
<br>
//------- JS output : The operator ?? translates to something like: <br>
//--------<br>
var x;<br>
   console.log(x||1);</blockquote></div><div><br></div><div>Maybe by overloading the "or" operator as soon as it is supported? :-)<br></div><div><br></div>-- <br><div dir="ltr" class="gmail_signature"><div dir="ltr"><div>Silvio Clécio</div></div></div></div>