What is the correct way to use this selector?

What is the correct way to use this selector?

Say, I want to grab a reference to several elements, I use a selector like this:

$(input);

But if I want to keep that reference, which one of these is the proper way?

var el = $(input);

$el = $(input);

Thanks