Hello all!
I am in VB Script today and I was wondering HOW do I make a Constant variable equal to a dollar or currency value? I need to create constant variables that will hold hard coded dollar values.
What is the syntax?
Printable View
Hello all!
I am in VB Script today and I was wondering HOW do I make a Constant variable equal to a dollar or currency value? I need to create constant variables that will hold hard coded dollar values.
What is the syntax?
note: constants are constant but variables are variableCode:<HTML>
<HEAD>
<Script language=VBscript>
const x = 32
msgbox x
</script>
</HEAD>
<BODY>
</body>
</html>