Search
Try Notion
Function Expression
Function Expression can be implemented without any name or params. They can be stored inside any variable like const, var or let!
For example :
const test = () => { return 'This is function expression' }
JavaScript
Note :
Arrow functions are known as function expression!