Function Declaration vs Function Expression: What’s the Difference?
In this Articel we are going to study Function Devlaration and Function Expression.
In javascript we write code.example.
let a=10;
let b=20;
let result=a+b;
console.log("result : ",result)
output -> 3
function-declaration-expression-sspadwal.hashnode.dev4 min read