Touch tap script - Object jumps when touching/tapping the screen

Hello, I’m a complete beginner with Scripting in C# or JS.
I just wanna know an Input script for tapping the screen, I’ve been searching everywhere.

Okay well first off you should note that Unity automatically translates Mouse Inputs to touches on smartphones.

So, you should probably already know what functions and stuff are, if you dont you probably should check out some tutorials. I recommend Brackeys or Jonathan Weinberger.

So basically you can do something in the update function like (dont copy and paste this its not completely correct):

if(Input.GetMouseDown(0)){
YourFunctionGoesHere();
//or you can just put the code you want to happen there instead but its better you get organised.
}