basic function add 2 + 3
function add (a, b){
console.log(a+b)
}
add(2, 3)
-----------------------------------------------------------------------------------------
let fun = function(){
console.log("hello)
}
function()
function add (a, b){
console.log(a+b)
}
add(2, 3)
-----------------------------------------------------------------------------------------
let fun = function(){
console.log("hello)
}
function()
Comments
Post a Comment