Low Priority Methods In LateUpdate?

Hey there, just a quick question!
Is it recommended to call all “low priority methods” via LateUpdate?
Methods like setting/getting the score and updating it on the UI.

I appreciate any suggestions!

Felix

LateUpdate is executed after Update, it would make sense to update camera positions there.
Transform is moved in update and later the camera, that would exclude the possibility for camera jitter - camera is updated before actual movement.
This is just one example i can think out of the head.