Function parameters from touch event

How can I pass a function parameters from touch event

Example
I have a function like:
coinMove(x){

};

I want to pass parameter value of ‘x’ from:
this.node.on(cc.Node.EventType.TOUCH_START, this.coinMove, this);

How can I pass ‘this.coinsMove’ function’s parameter?

Tray this.

‘this.coinMove.bind(this)’

Have a look in js-tests for examples too.

Please explain something, where is the value of x

can you explain what is a ‘x’ value?, why x parameter pass to function?.show you are code.

Not enough information provided