Hi all,
I have a script that takes a user's input as a string. I would like to use that user's argument to become the name of a new variable.
<script type="text/javascript">
var input=prompt("enter any string value");
var input.value; // initialize a new JavaScript variable using the user input as the referenced value
</script>
I know this script above doesn't work.
Bookmarks