Is there a way in JavaScript to call a function without parentheses?
For example in jQuery:
$(\'#wrap\').text(\"asdf\"); will work and so will <
$(\'#wrap\').text(\"asdf\");
Use template literals:
alert`WOW`
It is cleaner and shorter, without having to rely on jQuery, call, etc.