#javascript
Read more stories on Hashnode
Articles with this tag
Function Declaration: A function declaration defines a function with the specified parameters. The function declarations are processed before the code...
What are functions? The function is a piece of code that will help if we are writing the same code repeatedly. function iAmFunction() { ...some...
let: The let statement declares a block-scoped, local variable. syntax: let x ; let x = 2 ; Description: In the usage of let, we can divide the let...