I want to have a variable that has a "main" value but has new properties that can only be used with that variable
<script type="text/javascript">
var myVar="random value";
myVar.prop1="other value"; //How do I make it so that myVar can have that property, but other strings can't
</script>