I was wondering how to do something like this without needing the ():
let start = () => document.getElementById("#start");
currently i use it like this:
start().classList.remove("hidden");
but i would like to use it like this:
start.classList.remove("hidden");
but it should still call the function. How do I do this?