xxxxxxxxxx
<!DOCTYPE html>
<html>
<body>
<script type="text/vbscript">
Dim x
document.write(IsNull(x) & "<br>")
x=10
x=Empty
x=Null
document.write(IsNull(x))
</script>
</body>
</html>