]
If you need to introduce external Js, you need to refresh to execute
]
[Ctrl A select all Note:
If you need to introduce external Js, you need to refresh to execute
]<script>
a=0
if(a<1)alert(a),alert(1-a)
//VS
if(a==0){alert(a);alert(1-a)}
</script><script>
a=0
a?0:(alert(a),alert(1-a))
</script><script>
a=0
a==0 && (alert(a),alert(1-a))
</script>