let func=(a,b)=>{
console.log(a+b)
}
let funci2=func=>(a,b)=>{
console.log('2nd console')
func(a+b)
}
let a =3
let b=5
funci2(func(a,b))
Came up with problem while programming. I know it's going to be something very childish. In JS, why 2nd console is not printing? Output is just 8.