I am relatively new to Javascript and Jquery. I've been looking through some code for a potential project and I see constant use of '$'. Through the context I can get an idea of what it means, but I don't have enough of a grasp to understand how to manipulate it.
For example, this line seems to take the csv file and returns a string variable called data with the contents of the csv file. But I don't understand how or why it does that.
$.get('browserData.csv', function(data)){
How do people familiar with Jquery effectively use the '$'?