Answers for "inner function in javascript"

0

inner function in javascript

function name(firstName,lastName){
  function getFullName(){
    console.log(firstName,lastName);
  }
  getFullName();
}
name('Jaw Jaw', 'Rakhaine');
//Output will be
//Jaw Jaw Rakhaine
Posted by: Guest on March-20-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language