add two number function

Edit
//Addition of two number
add(a,b){
return a+b;
}