For further actions, you may consider blocking this person and/or reporting abuse
Read next
Book Review: Solution architect handbook – Third Edition
Romina Mendez -
Crypto News Aggregator using Typescript, Next.js, NewsDataHub and CoinGecko APIs
olga s -
Function-Calling vs. Model Context Protocol (MCP)
Patrick Chan -
Start Your Journey with Serverpod: Contribute and Earn Recognition
Vaunt -
Top comments (1)
So, we can think of a function as a box that does things, right? We put things into the box and the box acts upon them.
For example, imagine a box called "plus". The plus box will add together whatever things we happen to put into it. Like this:
Right now, we've used "plus" to add 1 and 2. We have 3, but it's just sitting in our box. We want 3 to be able to get out of the box:
The
return
keyword is what allows us to get the 3 out of the box. Now, we give our box 1 and 2, and get 3 in return.