mirror of
https://github.com/kamranahmedse/developer-roadmap.git
synced 2025-01-17 22:28:32 +01:00
Fixed: Function Expression Syntax (#4324)
The syntax for Function Expression was incorrect. It was an example of a function declared using Function Declaration.
This commit is contained in:
parent
ea70632de1
commit
eafd36f6aa
@ -13,12 +13,9 @@ function name(param1: type1, param2: type2, ...): returnType {
|
||||
> Function Expression Syntax:
|
||||
|
||||
```typescript
|
||||
function add(a: number, b: number): number {
|
||||
return a + b;
|
||||
}
|
||||
|
||||
let result = add(1, 2);
|
||||
console.log(result); // 3
|
||||
let name = function(param1: type1, param2: type2, ...): returnType {
|
||||
return value;
|
||||
};
|
||||
```
|
||||
|
||||
Learn more from the following links:
|
||||
|
Loading…
x
Reference in New Issue
Block a user