2
Researching materials on jQuery I noticed that some articles use two types of variable declaration, some using the dollar sign and others not, as in the example below:
Alternative 1
var $row =$("<tr/>")
Alternative 2
var row =$("<tr/>")
Is there any difference between the two ways? When to use one or the other?
Thank you all, I understand better!
– Kelly Soares