+ 1
Share your change of career by coding skills.
coding
2 Réponses
+ 1
I am just a beginner.. working on html with vbscript..
Can anyone explain what's happening.. what should i do to print value of the variables?
<script lang="vbscript">
dim a
a=2
document.write(a)
</script>
👆👉output: empty screen
<script lang="vbscript">
document.write("a")
</script>
👆👉output: a
<script lang="vbscript">
dim a
document.write("a")
</script>
👆👉output: empty screen