JavaScript L-2
Functions in javascript.
Functions are used to execute any task that repeats itself.
//Declare Function
function singHppyB(){
console.log("Happy Birthday!")
}
// Call Function
singHppyB();
//Storing return value in new variable and calling it
f...
techbyjeevika.io2 min read