say for example I have this code:
function tester($userInput)
{
this.$userInput1 = userInput;
}
say for example I have this code:
function tester($userInput)
{
this.$userInput1 = userInput;
}
$object doesn't mean anything specific in JavaScript.. its just a variable name. However if you've included the jQuery library, you can use $ to reference the jQuery library, ex: $.ajax()
or $('#element_id')