Cloud Functions
What are cloud functions? How do they work? Let’s start with how normal functions behave, for instance, in Javascript;
function sum(num1, num2) {
return num1+num2
}
sum(8, 7)
In the code above, we have a function called sum with 2 parameters - nu...
ignitedev.hashnode.dev4 min read