function add 2 values global and local

 let a = 5;

function local(){

  let b = 3

  console.log(a+b)

}


local()

Comments

Popular posts from this blog

practice test of Arithmetic Operations: