Fixed: Function Expression Syntax (#4324)

The syntax for Function Expression was incorrect. It was an example of a function declared using Function Declaration.
pull/4325/head
Abdul Wahab 1 year ago committed by GitHub
parent ea70632de1
commit eafd36f6aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 9
      src/data/roadmaps/typescript/content/106-functions/index.md

@ -13,12 +13,9 @@ function name(param1: type1, param2: type2, ...): returnType {
> Function Expression Syntax: > Function Expression Syntax:
```typescript ```typescript
function add(a: number, b: number): number { let name = function(param1: type1, param2: type2, ...): returnType {
return a + b; return value;
} };
let result = add(1, 2);
console.log(result); // 3
``` ```
Learn more from the following links: Learn more from the following links:

Loading…
Cancel
Save