Functions - Every aspect covered in one blog
Function statement - Kya hai?
function sayHello()
{
console.log(`Hello World`);
}
This way of creating a function is called a "Function Statement".
Function expression - Kya hai?
var a = function()
{
console.log(`Hello World`);
}
This way o...
ashusnapx.hashnode.dev2 min read