实例代码“Ctrl+/”提示“F11/ESC”全屏 返回 格式化 恢复 运行
AخA
 
1
<script>
2
    var x = "";
3
    if ( x ) {
4
        document.write("x defaulted to true");
5
    }else {
6
        document.write("x defaulted to false");
7
    }
8
    document.write("<br/>")
9
    document.write(!x);
10
    document.write("<br/>")
11
    document.write(!!x);
12
</script>