Control animation clip simultaneously on multiple objects

I want to control a specific animation clip which is used by many diferent gameobjects in the scene. For example the animation clip “coveranimation” simply moves an object upwards and is shared by 5 different gameobjects. How can I access this clip simultaneously on all these objects with js? Thanks in advance!

Make an array of your GameObjects and when you want to set the animations on all of them loop through the array and set the animations for each one.