I am new to javascript and I want to know that is there a way to declare a function without defining it. As we do in C:
int sum(int, int);
and then we can write it's definition later. As in:
int sum(int A, intB){
return A+B;
}
Do we have a way in javascript to just declare a function without defining it?