The "function" and "var" both are the Declaration statements.
The function and var keywords are both used to declare variables and functions in JavaScript. For example: var y = 10;
This code declares a variable y and initializes it with the value 10.