For further actions, you may consider blocking this person and/or reporting abuse
Read next
If you are starting in AI field ...
Jaisurya -
Newbie's Guide to Starting with Open Source Contributions
Metta Surendhar -
Technical Interview - Boilerplate 2 - Node + Serverless + AWS + Github Actions
Giuliana Olmos -
Should You Customize Your Resume for Every Job? Here's What I Learned After Applying to 100 Roles
Jasmeet Singh -
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.