This code throws an error that BigInt is unrecognized:
<html><head>
<HTA:APPLICATION ID="HelloExample"
BORDER="bold"
BORDERSTYLE="complex"/>
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Message Sender</title>
<script type='text/javascript'>
function Test()
{
var x = BigInt(5);
alert(x);
}
</script></head>
<body>
<center><h2>Message Sender</h2></center>
<input type='button' value='test' onclick='Test()' />
</body></html>
Is there a metatag or setting that allows me to use the native Javascript BigInt in a .HTA application?