How to jump player object without animation?

I want to I have jumped player what player object hasn’t any animation…How can I supply?

If you have a player with a rigidbody attached you can use the rigidbody to apply the needed force in Y:

If you have a player with a CharacterController attached you can move the controller in Y too:
(Unity - Scripting API: CharacterController.Move)

If you have a player without any physics you can use an animation clip to create an animation that does the jump and assign this animation to the animation controller:

Thanks mate