Best way to make a shell script daemon?

I wanted to run a shell script as a daemon, and I was exploring SO as usual, and one of the answers that I found interesting and that fits my use case was:

(./install.sh &) & 

Ref: to the original question here.