JavaScript Functions
Introduction
Functions are one of the fundamental building blocks of javascript, it's a group of reusable code that can perform some task and executed when it is been called or invoked.
Declaration of Function
function function1()
{
return "John...
avicreation.hashnode.dev3 min read