1. function hello(){
console.log("hello");
}
hello();
2. let greet = function(){
console.log("Hey there!");
}
greet();
Is 1 and 2 same? Since calling for both is same.
1. function hello(){
console.log("hello");
}
hello();
2. let greet = function(){
console.log("Hey there!");
}
greet();
Is 1 and 2 same? Since calling for both is same.
Fuel your ambition, discover your passion and achieve your professional goals with LetsUpgrade.
Sign Up Now