Hi
Expression whether true or false ?? by using if condition.
like a javascript as below.
<html>
<body>
<a id="demo"></a>
<script> var a=1; var result; if(1==1) { result=true; } else {result=false;} document.getElementById("demo").innerHTML = result;</script></body>
</html>
how can we do this by using ClearScript . Can you help me out with this sinario.
Expression whether true or false ?? by using if condition.
like a javascript as below.
<html>
<body>
<a id="demo"></a>
<script> var a=1; var result; if(1==1) { result=true; } else {result=false;} document.getElementById("demo").innerHTML = result;</script></body>
</html>
how can we do this by using ClearScript . Can you help me out with this sinario.