how to find average no in function

 function caAvg(a, b, c) {

    let avg = (a+b+c)/3
    console.log(avg);
}

caAvg(2,4,7)

Comments

Popular posts from this blog

practice test of Arithmetic Operations: