I am using not equal sign to convert false to true but it is always giving false. I have tried it with 0 and 1 which is working fine. Also when I am changing value "False" to "true" then it is also working but problem is with "false" only.
<script type="text/javascript">
var test= "False";
alert(!test)
</script>