Say for example I have an element like this:
<input type="button" id="model{{id}}{{Value}}" ng-click="myFunction( )">
if id
was 178 and Value
was 123, how can I make the ng-click
above concatenate those value and pass them into the function?
Simply by going ng-click=myFunction(id + Value)
would return a sum, when I would want the value passed into that function to be 178123.
This possible?