javascript looping exercises code example
Example 1: javascript function exercises
function names(raj){
return "hello" + raj;
}
names("rahat")
Example 2: javascript looping exercises
hello rahat
function names(raj){
return "hello" + raj;
}
names("rahat")
hello rahat