Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion javascript/functions/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,14 @@ let message = function () {
console.log('Happy Learning!');
}
```
Apart form that we can also use an arrow function to assign function to a variable explicity.

### Examples
```javascript
let message = ()=>{
console.log('Happy Learning!');
}
```
You can copy function to an another variable.

```javascript
Expand All @@ -107,4 +115,4 @@ greetings(); // prints Happy Learning!

* A function can be assigned to a variable.
* You can default values to the parameters of a function
* A function is created predominently for re-usability.
* A function is created predominently for re-usability.